.overlay-popup {
  align-items: center;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  height: 100vh;
  left: 0;
  top: 0;
  opacity: 1;
  position: fixed;
  transition: 100ms;
  width: 100vw;
  z-index: 999999999;
  transition: 100ms; }
  .overlay-popup-inner {
    background-color: #fff;
    width: 90%;
    max-width: 600px;
    margin: 0 auto;
    padding-bottom: 20px; }
    .overlay-popup-inner p {
      padding: 15px;
      line-height: 1.5; }

.overlay-close {
  width: 200px;
  height: 42px;
  line-height: 42px;
  border: 1px solid #000;
  color: #000;
  margin: auto;
  text-align: center; }

.pit-fixed-banner {
  position: fixed;
  bottom: 0;
  opacity: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 350px;
  max-width: 90%;
  z-index: 2;
  transition: 1s; }
  .pit-fixed-banner.is-show {
    opacity: 1;
    bottom: 20px;
    transition: 1s; }
    .pit-fixed-banner.is-show .pit-banner-close-button {
      display: block; }

.pit-fixed-banner-inner {
  position: relative; }

.pit-banner-close-button {
  position: absolute;
  display: none;
  top: -25px;
  right: 0;
  font-size: 16px;
  height: 25px;
  width: 25px;
  color: #fff;
  text-align: center;
  line-height: 25px;
  background-color: #ed1b24; }
