	.popup-hidden {
	display:none !important;
	} 
     .popup-overlay {
            position: fixed;
            top: 0; left: 0;
            width: 100%; height: 100%;
            background: rgba(255, 255, 255, 0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 9999;
            backdrop-filter: blur(5px);
            
        }
        .popup-content {
            position: relative;
            width: 80%;
            max-width: 500px;
            background: white;
            padding: 0;
            border-radius: 20px 20px 0 0;
            text-align: center;
            
        }
        .popup-content img {
            width: 100%;
            border-radius: 0;
        }
        .popup-closes {
position: absolute;
    width: 30px;
    height: 30px;
    display: block;
    top: 8px;
    right: 10px;
    font-size: 24px;
    cursor: pointer;
    color: white;
    z-index: 10;
    overflow: hidden;
    line-height: 1em;
        }
        .popup-buttons {
            margin-top: 0px;
            display: flex;
            justify-content: space-between;
        }
        .popup-buttons button {
            padding: 10px 15px;
            border: none;
            cursor: pointer;
            font-size: 14px;
            border-radius: 0px;
			width:50%;
			color: white;
        }
        .popup-buttons #hide-today {
            background: #cccccc;
            color: white;
        }
        .popup-buttons #hide-today:hover {
            background: #222222;
        }
        .popup-buttons .popup-closes-btn {
            background: #555555;
        }
        .popup-buttons .popup-closes-btn:hover {
            background: #222222;
        }

        /* 모바일 버전 */
        @media (max-width: 768px) {
    .popup-overlay {
        align-items: flex-end; /* 하단 정렬 */
        background: rgba(255, 255, 255, 0.6);
    }
        .popup-content img {
            border-radius: 10px 10px 0 0;
        }
    .popup-content {
        width: 100%;
        max-width: none;
        border-radius: 20px 20px 0 0;
        position: relative;
        transform: translateY(100%); /* 처음에는 화면 아래에 위치 */
        opacity: 0;
        visibility: hidden;
        transition: transform 0.4s ease-in-out, opacity 0.3s ease-in-out, visibility 0.3s;
    }

    /* 팝업이 나타날 때 */
    .popup-content.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
        }