

/* Start:/bitrix/templates/main/components/bitrix/news/news_n/bitrix/news.detail/news_detail/style.css?17809274685429*/
img.news-right {
    width: 200px !important;
}

img.news-left {
    height: auto !important;
	width: 200px !important;
}
section.maincatalog.new{
    overflow: hidden;
}
.information__right.fixed{
right: calc(5% - 50px);
max-width: 36%;
}

footer {
    position: relative;
//    z-index: 9999999999999;
}
.txt_detail{
margin-bottom:40px;
}
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__btns{
	margin-bottom: 40px;
    display: inline-block;
    width: 100%;
    box-sizing: border-box;
}

.news__btns .btn.red{
	float: left;
    clear: right;
}
.news__btns .btn.red.prev_btnred{
	float: right;
}

@media screen and (max-width: 500px) {
	.news__btns .btn.red{
    padding: 10px;
	}
}
.news__btns .btn.red:hover {
    border: 1px solid black;
    color: black;
    transform: scale(1.05) skewX(-14deg);
}
.product__slideritem.video {
  position: relative;
  display: inline-block;
}

.product__slideritem.video a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  border-left: 30px solid white; /* колір трикутника */
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  z-index: 2;
  opacity: 0.8;
}

.product__slideritem.video a::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px; /* розмір червоного кола */
  height: 70px;
  background-color: #FF0000;
  border-radius: 50%;
  z-index: 1;
  opacity: 0.8;
}
.contentintext{
    max-width: 1200px;
}

.contentintext h1{
    margin: 0 0 20px;
    font-size: clamp(32px, 5vw, 56px);
    line-height: 1.15;
    font-weight: 700;
    color: #1f2937;
    letter-spacing: -1px;
}

.contentintext .new__date{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 30px;
    padding: 8px 18px;
    background: #f3f4f6;
    border: 1px solid #e5e7eb;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 600;
    color: #6b7280;
}

.contentintext .new__date::before{
    content: "";
    width: 8px;
    height: 8px;
    background: #4caf50;
    border-radius: 50%;
}

.contentintext img{
    display: block;
    width: 100%;
    height: auto;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,.12);
    transition: transform .4s ease, box-shadow .4s ease;
}

.contentintext img:hover{
    transform: scale(1.01);
    box-shadow: 0 30px 80px rgba(0,0,0,.16);
}

/* Основний текст */

.contentintext{
    font-size: 18px;
    line-height: 1.8;
    color: #374151;
}

.contentintext p{
    margin: 0 0 24px;
}

/* Заголовки */

.contentintext h2{
    margin: 50px 0 20px;
    font-size: 36px;
    font-weight: 700;
    color: #1f2937;
}

.contentintext h3{
    margin: 40px 0 16px;
    font-size: 28px;
    font-weight: 600;
    color: #1f2937;
}

/* Марковані списки */

.contentintext ul{
    margin: 25px 0;
    padding: 0;
    list-style: none;
}

.contentintext ul li{
    position: relative;
    padding-left: 32px;
    margin-bottom: 14px;
}

.contentintext ul li::before{
    content: "";
    position: absolute;
    left: 0;
    top: 11px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #4caf50;
}

/* Нумеровані списки */

.contentintext ol{
    margin: 25px 0;
    padding: 0;
    counter-reset: item;
    list-style: none;
}

.contentintext ol li{
    position: relative;
    padding-left: 50px;
    margin-bottom: 18px;
    counter-increment: item;
}

.contentintext ol li::before{
    content: counter(item);
    position: absolute;
    left: 0;
    top: -2px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #4caf50;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Посилання */

.contentintext a{
    color: #2e7d32;
    text-decoration: none;
    border-bottom: 1px solid rgba(46,125,50,.3);
    transition: .3s;
}

.contentintext a:hover{
    color: #1b5e20;
    border-color: #1b5e20;
}

/* Цитати */

.contentintext blockquote{
    margin: 35px 0;
    padding: 20px 30px;
    border-left: 5px solid #4caf50;
    background: #f8faf8;
    font-style: italic;
    border-radius: 0 12px 12px 0;
}

/* Таблиці */

.contentintext table{
    width: 100%;
    margin: 30px 0;
    border-collapse: collapse;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,.05);
}

.contentintext table th{
    background: #2e7d32;
    color: #fff;
    padding: 16px;
    text-align: left;
}

.contentintext table td{
    padding: 14px 16px;
    border-bottom: 1px solid #e5e7eb;
}

.contentintext table tr:nth-child(even){
    background: #f9fafb;
}

/* Зображення всередині статті */

.contentintext img{
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    margin: 30px 0;
}

/* Mobile */

@media (max-width: 768px){

    .contentintext{
        padding: 20px 15px;
    }

    .contentintext h1{
        margin-bottom: 15px;
        line-height: 1.2;
    }

    .contentintext .new__date{
        margin-bottom: 20px;
        font-size: 14px;
    }

    .contentintext img{
        border-radius: 16px;
    }
}
/* End */
/* /bitrix/templates/main/components/bitrix/news/news_n/bitrix/news.detail/news_detail/style.css?17809274685429 */
