.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.popup .popup-content {
    background: white;
    padding: 2%;
    text-align: center;
    border-radius: 8px;
    max-width: 96%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.popup .popup-content img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
}

.popup .popup-actions {
    display: flex;
    justify-content: space-between;
}
.popup .close-today
,.popup .close-popup {
    margin-top: 2%;
    padding: 2% 4%;
    color: white;
    border: none;
    border-radius: 5px;
	font-size: 5vw;
	font-family: 's-core';
}
.popup .close-today {
    background-color: #007BFF;
    color: white;
}

.popup .close-popup {
    background-color: #007BFF;
    color: white;
}
