.scroll-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
}

.modal-content {
    background-color: #fff;
    padding: 10px;
    border-radius: 12px;
    width: 90%;
    max-width: 450px;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%, -50%)
}

.modal-content img {
    display: flex;
    max-width: 100%;
    height: auto;
    border-radius: 12px;
}

.close-btn {
	position: absolute;
	top: 5px;
	right: 20px;
	font-size: 30px;
	font-weight: bold;
	cursor: pointer;
	color: #fff;
}
