.buddy_p5_popup {
  display: none; /* ซ่อนป๊อปอัปในตอนแรก */
  position: fixed;
  top: 40%;
  left: 20px; /* ตำแหน่งจากขอบขวาของจอ 20px */
  width: 300px; /* กำหนดความกว้างของป๊อปอัป */
  /*background-color: rgba(0, 0, 0, 0.0); /* พื้นหลังโปร่งใส */
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  justify-content: center;
  align-items: center;
}

.buddy_p5_popup-content {
  background-color: #fff;
  padding: 20px;
  border-radius: 30px;
  text-align: center;
  position: relative;
}

.buddy_p5_popup-content img {
  width: 100%;
  border-radius: 10px;
}

.buddy_p5_close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 30px;
  cursor: pointer;
}
