div.news-detail
{
	word-wrap: break-word;
}
div.news-detail img.detail_picture
{
	/*float:left;*/
	/*margin:0 8px 6px 1px;*/
}
.news-date-time
{
	color:#486DAA;
}

.news-detail .gallery-wrap {
	display: flex;
	flex-direction: row;
	width: 100%;
	/*height: 40vh;*/
}

.news-detail .gallery-item {
	flex: 1;
	transition: flex 1.0s ease;
	filter: blur(3px);
	border-radius: 10px;
}

.news-detail .gallery-item:hover {
	flex: 12; /* Adjust this value as needed */
	filter: blur(0px); /* Adjust the blur effect on hover */
}

.news-detail h2{
	margin-top: 20px;
	margin-bottom: 30px;
}

.news-detail p {
	margin-bottom: 20px;
}

.news-detail ul,
.news-detail ol{
	padding-left: 30px;
}

.news-detail li{
	margin-top: 8px;
}

.news-detail .news-detail-share{
	margin-top: auto;
}



.news-detail .swiper-container{
	position: relative;
}

.news-detail .swiper-container.--vertical{
	display: flex;
}

.news-detail .mySwiper2 {
	height: 90%;
	width: 100%;
}

.news-detail .--vertical .mySwiper2{
	height: 100%;
	width: 80%;
}

.news-detail .mySwiper {
	height: 10%;
	box-sizing: border-box;
	padding: 10px 0;
}

.news-detail .--vertical .mySwiper{
	width: 20%;
	padding: 0 10px;
}

.news-detail .swiper .swiper-slide{
	cursor: grab;
}

.news-detail .mySwiper .swiper-slide {
	width: 25%;
	height: 100%;
	opacity: 0.4;
}

.news-detail .--vertical .mySwiper .swiper-slide {
	height: 25%;
	width: 100%;
	opacity: 0.4;
}

.news-detail .mySwiper .swiper-slide-thumb-active {
	opacity: 1;
}

.news-detail .swiper-slide img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.news-detail .swiper-button-prev,
.news-detail .swiper-button-next{
	color: inherit;
}

.news-detail .swiper-pagination-bullet {
	background-color: transparent;
	border: 2px solid var(--green);
	width: 10px;
	height: 10px;
}

.news-detail .swiper-pagination-bullet-active {
	background-color: var(--green);
}

.news-details-links-block{
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.news-detail-url {
	color: inherit;
}

.news-detail-url span {
	color: black;
	padding: 20px 10px;
}

.news-detail-url i{
	width: 47px;
	height: 47px;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	text-decoration: none;
}

