#recent-popup {
    display: none;
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: #ffffff;
    padding: 5px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    font-family: Arial, sans-serif;
    font-size: 14px;
    z-index: 9999;
    width: auto;
    text-align: center;
    animation: slideLeftFade 0.5s forwards;
}

.popup-64 {
    display: flex;
}

.popup-64-1 {
    display: flex;
}

.popup-64-1 img {
    width: 60px;
    border-radius: 5px;
}

.popup-64-2 {
    margin: 0 10px;
    text-align: left;
}

.popup-63-2 {
    margin-bottom: 5px;
    padding-bottom: 5px;
    border-bottom: 1px dashed var(--secondary-color);
    font-size: 10px;
    color: var(--forth-color);
}

.popup-63-1 {
    font-size: 14px;
    font-weight: bold;
    color: var(--primary-color);
}

.popup-63-1-1, .popup-63-1-2 {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 150px;
}

.popup-65-1 {
    font-size: 12px;
}

.popup-66-1 {
    font-size: 12px;
}

@media (min-width: 321px) and (max-width: 480px) {
    #recent-popup {
        left: 50%;
        transform: translateX(-50%);
        min-width: 300px;
        bottom: 80px;
        animation: slideUpFade 0.5s forwards;
    }

    .popup-64-1 img {
        width: 40px;
        border-radius: 5px;
    }

    .popup-65-1 {
        display: none;
    }

}

/* Slide Up + Fade In */
@keyframes slideUpFade {
  from {
    bottom: -100px;
    opacity: 0;
  }
  to {
    bottom: 80px;
    opacity: 1;
  }
}

/* Slide In from Left + Fade In */
@keyframes slideLeftFade {
  from {
    left: -200px;
    opacity: 0;
  }
  to {
    left: 20px;
    opacity: 1;
  }
}

/*
@media (max-width: 320px)
@media (min-width: 321px) and (max-width: 480px)
@media (min-width: 481px) and (max-width: 600px)
@media (min-width: 601px) and (max-width: 900px)
@media (min-width: 901px) and (max-width: 1200px)
@media (min-width: 1201px) and (max-width: 1800px)
@media (min-width: 1801px)
*/