/* fonts */
@font-face {
  font-family: Source-Bold;
  src: url("../../fonts/popup-fonts/SourceSansPro-Bold.ttf");
}
@font-face {
  font-family: San-francisco-Semibold;
  src: url("../../fonts/popup-fonts/San-francisco-Semibold.otf");
}
/* mixins */
/* animations */
@keyframes slideUp {
  0% {
    transform: translateY(145px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes slideDown {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(145px);
    display: none;
  }
}
@keyframes opacity {
  0% {
    opacity: 0;
    visibility: hidden;
  }
  100% {
    opacity: 1;
    visibility: visible;
  }
}
/* popup */
.fixed-popup-wrapper {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  position: fixed;
  bottom: 0;
  left: 10px;
  z-index: 1000;
  right: 20px;
  display: none;
  animation: slideUp 2s 1;
}
.fixed-popup-wrapper.closed {
  animation: slideDown 2s 1;
  animation-fill-mode: forwards;
}
.fixed-popup-wrapper .close-popup {
  width: 20px;
  height: 20px;
  background: #fff;
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.05);
  -o-box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.05);
  -webkit-box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.05);
  border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -webkit-border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -10px;
  right: -10px;
  z-index: 10;
  padding: 0 0 0 1px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  animation: opacity 1s 1;
  animation-delay: 2s;
  animation-fill-mode: forwards;
}
.fixed-popup-wrapper .popup-wrap {
  background: #FAB300;
  border-radius: 6px 6px 0 0;
  -moz-border-radius: 6px 6px 0 0;
  -o-border-radius: 6px 6px 0 0;
  -webkit-border-radius: 6px 6px 0 0;
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.05);
  -o-box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.05);
  -webkit-box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.05);
  padding: 16px 13px 14px 25px;
  position: relative;
}
.fixed-popup-wrapper .popup-wrap figure {
  position: absolute;
  bottom: 0;
  left: 25px;
  margin: 0;
  width: 97px;
  height: 145px;
}
.fixed-popup-wrapper .popup-wrap figure img {
  width: 100%;
  height: 100%;
  -webkit-object-fit: contain;
  -moz-object-fit: contain;
  -ms-object-fit: contain;
  -o-object-fit: contain;
  object-fit: contain;
}
.fixed-popup-wrapper .popup-wrap > div {
  width: 52%;
  margin-left: auto;
}
.fixed-popup-wrapper .popup-wrap > div p {
  font-family: Source-Bold, sans-serif;
  font-size: 14px;
  line-height: 18px;
  color: #000000;
  margin: 0 0 10px;
  padding-right: 15px;
}
.fixed-popup-wrapper .popup-wrap > div .custom-btn {
  display: block;
  font-family: San-francisco-Semibold, sans-serif;
  background: #EE5B28;
  border-radius: 6px;
  -moz-border-radius: 6px;
  -o-border-radius: 6px;
  -webkit-border-radius: 6px;
  padding: 5px;
  text-align: center;
  font-size: 12px;
  line-height: 14px;
  color: #fff;
  text-decoration: none;
}

/* media query */
@media only screen and (max-width: 768px) {
  .fixed-popup-wrapper {
    display: block;
  }
}/*# sourceMappingURL=popup.css.map */