/* CSS Document */
#self_popup {
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 9999;
  width: 350px;
  box-sizing: border-box; }
  #self_popup .self_popup_container {
    transition: max-height .4s ease;
    max-height: 527px; }
  #self_popup .self_popup_container.is-close {
    max-height: 27px; }
  #self_popup .self_popup_container_inner {
    background: #fff;
    padding-bottom: 8px; }
  #self_popup .close_box {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    border-bottom: 5px solid #50C8A7; }
    #self_popup .close_box span {
      background: #50C8A7;
      color: #fff;
      display: inline-block;
      width: 30px;
      text-align: center;
      font-size: 12px; }
      #self_popup .close_box span:hover {
        cursor: pointer; }
  #self_popup video {
    width: 100%;
    height: auto; }
  #self_popup .btn_img {
    display: block;
    background: #FF8D2A;
    color: #fff;
    width: 90%;
    margin: 2px auto 0px auto;
    padding: 10px 0;
    border-radius: 50px;
    text-align: center;
    font-size: clamp(14px, 3vw, 14px);
    font-weight: bold; }
