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;
}

.product-page p {
	opacity: 0.6;
}

.product-page table {
	width: 100%; /* Полная ширина таблицы */
	border-collapse: collapse; /* Удаление промежутков между ячейками */
}

.product-page tr {
	display: flex; /* Включаем Flexbox для строки таблицы */
}

.product-page td:nth-child(2) {
	flex-grow: 1;
	border-bottom: 1px dashed;
	transform: translateY(-2px);
}

.product-page td:last-child {
	padding-left: 5px;
	flex: 0 0 30%;
}

.product-page th {
	flex: 0 0 auto;
	padding-right: 10px;
}

.product-page h5 {
	font-weight: normal;
	font-size: 1.25rem;
	margin: 0;
	margin-bottom: 0px;
	margin-bottom: 1rem;
}

/* --------------------PRODUCT PAGE-------------------- */
.product-page {
    padding-top: 100px;
}
.color--grey {
    opacity: 0.6;
}
.fw--normal {
    font-weight: normal;
}
.product-page .product__description {
    background-color: rgba(30, 30, 30, 0.05);
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    border-radius: 1rem;
    margin-bottom: 2rem;
}
.product__description .product__left {
    max-width: 380px;
    width: 100%;
}
.product__description .product__name {
    border-bottom: 2px solid var(--color-black);
    margin-bottom: 0.5rem;
}
.product__description .product__icons {
    display: flex;
    gap: 1.5rem;
    margin-top: 1rem;
    margin-bottom: 2rem;
}
.product__description .product__left .btn {
    margin: 1rem 0;
}
.product__description .product__standart {
    border: 1px solid rgba(0, 0, 0, 0.6);
    padding: 1rem;
    border-radius: 1rem;
    margin-top: 20%;
}

.product__description .product__right {
    flex: 0 0 50%;
    text-align: center;
    display: flex;
    flex-direction: column;
}
.product__description .product__img {
    height: 500px;
    object-fit: contain;
    margin: 4rem 0;
}
.product__description .product__right .btn {
    align-self: flex-end;
}
@media screen and (max-width: 1024px) {
    .product-page .product__description {
        flex-direction: column;
    }
    .product__description .product__img {
        height: 300px;
        margin: 2rem 0;
    }
}

.product-page .product__middle {
    display: flex;
    gap: 2rem;
}
.product-page .product__middle p {
    margin-bottom: 2rem;
}

.product__middle .product__left,
.product__middle .product__right {
    flex: 0 0 50%;
}

.product-page table {
    width: 100%;
    margin-bottom: 2rem;
}
.product-page table th {
    text-align: start;
    opacity: 0.6;
    font-weight: normal;
    display: flex;
    gap: 1rem;
}
.product-page table .th-line {
    flex-grow: 1;
    border-bottom: 1px dashed;
    transform: translateY(-2px);
}

.product-page table td {
    font-weight: 700;
}
.product__technical-conditions {
    border: 1px solid var(--color-black);
    font-weight: 700;
    text-align: center;
    border-radius: 0.5rem;
    padding: 0.5rem 1rem;
}

.product-page ul {
    padding-left: 1.75rem;
}
.product-page ul li {
    list-style: disc outside;
    opacity: 0.6;
    margin-bottom: 0.5rem;
}

@media screen and (max-width: 1024px) {
    .product-page .product__middle {
        flex-direction: column;
    }
}

.product__available-volumes {
    background-color: rgba(30, 30, 30, 0.05);
    padding: 2rem;
    border-radius: 1rem;
    margin-bottom: 2rem;
}
.product__available-volumes h3 {
    text-align: center;
    margin-bottom: 2rem;
}
.available-volumes__block {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.available-volume {
    max-width: 300px;
    width: 100%;
}
.available-volume__img {
    height: 200px;
    width: 250px;
    position: relative;
    margin-bottom: 1rem;
}
.available-volume__img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.available-volume h4 {
    font-weight: normal;
    border-bottom: 1px solid var(--color-black);
    margin-bottom: 0.5rem;
}
.available-volume h3 {
    text-align: start;
}

.product__gallery {
    margin-bottom: 2rem;
}
.gallery__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 416px));
    grid-gap: 2rem;
}
.gallery__item {
    padding: 2rem;
    position: relative;
    background: rgba(30, 30, 30, 0.05);
    border-radius: 1rem;
    text-align: center;
}
.gallery-item__img {
    padding-bottom: 90%;
    position: relative;
}
.gallery-item__img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.gallery__item span {
    opacity: 0.6;
    font-size: 0.75rem;
    position: absolute;
    bottom: 1rem;
    right: 1rem;
}

