.banners-header{
	display: flex;
	flex-direction: column;
	gap: 10px;
	align-items: center;
}
.banners-header img{max-width: 1110px}
.banners-wrap img{
	width: 100%;
	border-radius: 5px;
	box-shadow: 0px 0px 15px rgba(7, 16, 39, 0.4);
}
.banners-wrap.nad-paginaciej{
	margin-right: 30px;
    width: 100%;
}
.banners-wrap.kalendar-posle-pervogo-bloka-tablicy{
	display: flex;
	justify-content: center;
	margin-bottom: 15px;
	background: #000;
	border-radius: 8px;
}
.banners-wrap.posle-vtorogo-ryada-kontenta{
	margin-bottom: 30px;
	width: 100%;
	text-align: center;
	margin-right: 30px;
}
.banners-wrap{
	position: relative;
}
.banners-wrap a.edit{
	position: absolute;
	width: 26px;
	height: 26px;
	border-radius: 50%;
	background: #fff;
	right: -10px;
	top: -10px;
	padding: 5px;
	box-sizing: border-box;
	display: none;
}
.banners-wrap:hover a.edit{
	display: block;
}
.skeleton {
 background-color: #0f1b32;
 background-image: linear-gradient(90deg, rgba(255, 255, 255, 0), rgb(30 47 86), rgba(255, 255, 255, 0));
 background-size: 160px 100%;
 background-repeat: no-repeat;
 background-position: left -160px top 0;
 -webkit-animation: shine 1s ease infinite;
}
.banners-wrap.skeleton img{
	opacity: 0;
}

.banners-wrap.logo-v-shapke img{
	box-shadow: none;
	height: 50px;
	width: auto;
}

.banners-wrap .banner-info{
	position: absolute;
	width: 26px;
	height: 26px;
	border-radius: 50%;
	background: #fff;
	right: -10px;
	top: 24px;
	padding: 5px;
	box-sizing: border-box;
	display: none;
	cursor: pointer; 
	z-index: 1000;
}

.banners-wrap:hover .banner-info{
	display: block;
}

.banners-wrap .banner-info svg{
	width: 100%;
	height: 100%;
	display: block;
}

.banners-wrap .banner-info-tooltip{
	position: absolute;
	right: 0;
	top: 36px;
	background: #fff;
	border: 1px solid #ddd;
	border-radius: 8px;
	padding: 12px;
	min-width: 280px;
	max-width: 320px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
	display: none;
	z-index: 1001;
	font-size: 13px;
	line-height: 1.6;
	color: #333;
	white-space: normal;
	word-wrap: break-word;
}

.banners-wrap .banner-info-tooltip::before{
	content: '';
	position: absolute;
	top: -6px;
	right: 10px;
	width: 0;
	height: 0;
	border-left: 6px solid transparent;
	border-right: 6px solid transparent;
	border-bottom: 6px solid #fff;
}

.banners-wrap .banner-info-tooltip::after{
	content: '';
	position: absolute;
	top: -7px;
	right: 10px;
	width: 0;
	height: 0;
	border-left: 6px solid transparent;
	border-right: 6px solid transparent;
	border-bottom: 6px solid #ddd;
}

.banners-wrap .banner-info:hover .banner-info-tooltip{
	display: block;
}

.banner-info-content{
	text-align: left;
}

.banner-info-row{
	margin-bottom: 8px;
}

.banner-info-row:last-child{
	margin-bottom: 0;
}

.banner-info-row strong{
	color: #000;
	font-weight: 600;
}

.banner-info-detail{
	color: #666;
	font-size: 12px;
	margin-left: 8px;
}

.banner-info-divider{
	height: 1px;
	background: #ddd;
	margin: 10px 0;
}

.banner-info-section-title{
	font-weight: 600;
	color: #000;
	margin-bottom: 6px;
	font-size: 14px;
}

.banner-chart-container{
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 4px;
	height: 60px;
	margin-top: 8px;
	padding: 8px 0;
	border-top: 1px solid #eee;
	border-bottom: 1px solid #eee;
}

.banner-chart-bar{
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-end;
	height: 100%;
	position: relative;
}

.banner-chart-bar-fill{
	width: 100%;
	background: linear-gradient(to top, #4a90e2, #5ba3f5);
	border-radius: 2px 2px 0 0;
	min-height: 2px;
	transition: opacity 0.2s;
}

.banner-chart-bar:hover .banner-chart-bar-fill{
	opacity: 0.8;
}

.banner-chart-bar-label{
	font-size: 9px;
	color: #666;
	margin-top: 4px;
	text-align: center;
	line-height: 1;
}

.banner-chart-bar-value{
	font-size: 10px;
	color: #333;
	font-weight: 600;
	margin-top: 2px;
	text-align: center;
	line-height: 1;
}

@-webkit-keyframes shine {
  to {
	background-position: right -40px top 0;
  }
}

@keyframes shine {
  to {
	background-position: right -40px top 0;
  }
}
@media (max-width: 767px){
	.banners-wrap.posle-vtorogo-ryada-kontenta{
		margin-right: 0px;
	}	
}

@media (max-width: 767px){
	.banners-wrap.posle-vtorogo-ryada-kontenta{
		margin-right: 0px;
	}	
	.parallax-effect {
	  position: relative;
	  height: 460px; /* Фиксированная высота контейнера */
	  overflow: hidden;
	}
	
	.parallax-effect img {
	  position: absolute;
	  top: 0;
	  left: 0;
	  width: 100%;
	  height: auto;
	  transform: translateY(0);
	  transition: transform 0.1s linear;
	}
	
	.banners-wrap .banner-info-tooltip{
		min-width: 240px;
		max-width: calc(100vw - 40px);
		right: auto;
		left: 50%;
		transform: translateX(-50%);
	}
	
	.banners-wrap .banner-info-tooltip::before,
	.banners-wrap .banner-info-tooltip::after{
		right: auto;
		left: 50%;
		transform: translateX(-50%);
	}
}