/* Затемнение фона и центрирование модального окна */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
}

.popapAdvertising {
    background-color: #fff;
    padding: 0;
    max-width: 1200px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    position: relative; /* Для позиционирования кнопки закрытия */
}
.popapAdvertising a{
	display: flex;
	align-items: flex-start;
}

.popapAdvertising img {
	width: 100%;
	border-radius: 8px;
}

.popapAdvertising .close-button
{
	background-color: #166757;
	color: #fff;
	border: none;
	cursor: pointer;
	font-size: 28px;
	margin-left: -40px;
	border-radius: 0 8px 0 0;
	display: inline-flex;
	height: 40px;
	justify-content: center;
	align-items: center;
	width: 53px;
	margin-top: 0;
	padding: 0 0;
	z-index: 3000;
	position: absolute;
	right: 0;
}
.popapAdvertising .close-button:hover
{
	background-color: #006400;
}
.hidden
{
	display: none;
}

