.custom_banner_wrapper {
  position: fixed;
  left: 0px;
  bottom: 0px;
  cursor: pointer;
  display: none;
  transition: visibility 0s, opacity 0.5 linear;
  z-index: 9999;

  .custom_banner_img_wrapper {
    width: 360px;
    height: 140px;
    background-image: url('line_banner.png');
    background-size: cover;
  }

  .custom_banner_content {
    position: relative;

    .custom_banner_top {
      width: 412px;
      height: 104px;
      background-color: #39d077;
      border-top-right-radius: 8px;
      border-top-left-radius: 8px;
      padding: 18px 16px 16px 18px;
      display: flex;

      .line_img {
        width: 125px;
        height: 69px;
      }

      .custom_banner_top_right {
        margin-left: 15px;
        display: flex;
        flex-direction: column;
        color: white;
        justify-content: space-between;

        .banner_title_text {
          font-size: 13px;
          font-weight: 700;
        }

        .custom_banner_top_right_content {
          display: flex;

          .percent_discount_wrapper {
            display: flex;
            justify-content: center;
            align-items: center;
            height: 46px;
            font-size: 66px;
            font-weight: bold;
          }

          .discount_right_content {
            display: flex;
            flex-direction: column;
            margin-left: 8px;
            font-size: 17px;
            font-weight: 700;
            line-height: 25px;
          }
        }
      }
    }

    .custom_banner_bottom {
      width: 412px;
      height: 31px;
      background-color: #fff0d2;
      border-bottom-right-radius: 8px;
      border-bottom-left-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;

      .custom_banner_bottom_content {
        font-size: 16px;
        font-weight: bold;
        color: #62470e;
      }
    }
  }

  .close_btn_banner_wrapper {
    position: absolute;
    top: 4px;
    right: 8px;

    .close_btn_banner {
      width: 30px;
      height: 30px;
      border-radius: 50%;
      background-color: #252525;
      display: flex;
      align-items: center;
      justify-content: center;
    }
  }
}

@media only screen and (max-width: 600px) {
  .custom_banner_wrapper {
    right: 12px;
    left: auto;
    bottom: 12px;
    .custom_banner_img_wrapper {
      width: 180px;
      height: 75px;
      background-image: url('line_banner_sp.png');
    }
    .custom_banner_content {
      .custom_banner_top {
        width: 291px;
        height: 79px;
        padding: 16px 16px 15px 12px;

        .line_img {
          width: 82px;
          height: 45px;
        }

        .custom_banner_top_right {
          .banner_title_text {
            font-size: 8px;
          }

          .custom_banner_top_right_content {
            .percent_discount_wrapper {
              font-size: 32px;
            height: 20px;
            }

            .discount_right_content {
              font-size: 12px;
              line-height: 12px;
            }
          }
        }
      }

      .custom_banner_bottom {
        width: 291px;
        height: 24px;

        .custom_banner_bottom_content {
          font-size: 13px;
        }
      }
    }

    .close_btn_banner_wrapper {
      position: absolute;
      top: 1.0vw;
      right: -1.0vw;

      .close_btn_banner {
        width: 5vw;
        height: 5vw;
      }
    }
  }
}
