div.news-list
{
	word-wrap: break-word;
}
div.news-list img.preview_picture
{
	float:left;
	margin:0 4px 6px 0;
}
.news-date-time {
	color:#486DAA;
}

/* ----------PRODUCTS---------- */

#products .swiper::before {
    max-height: 320px;
    height: 65%;
}
#products .swiper-navigation {
    bottom: 150px;
}
#products .swiper-slide {
    display: flex !important;
    flex-direction: column !important;
    justify-content: end !important;
}
#products .swiper-slide::after {
    bottom: 30%;
    height: 40%;
}

.product__img {
    position: relative;
    height: 300px;
    margin-bottom: 1rem;
}
.product__img::before {
    display: none;
    content: "";
    position: absolute;
    bottom: 50%;
    left: 50%;
    transform: translate(-50%, 50%);
    width: 116px;
    height: 100px;
    border-radius: 50%;
}
.product__shadow--red::before {
    box-shadow: 0px 64px 64px 64px #ff595a;
}
.product__shadow--blue::before {
    box-shadow: 0px 64px 64px 64px #00ffff;
}
.product__shadow--green::before {
    box-shadow: 0px 64px 64px 64px #14ff00;
    opacity: 0.4;
}
.product__shadow--purple::before {
    box-shadow: 0px 64px 64px 64px #ff00b8;
    opacity: 0.4;
}
.product__img img {
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: 0;
    left: 0;
    object-fit: contain;
    transition: top .3s;
}

.product__title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    line-height: 2.5rem;
}
.product__info {
    font-size: 0.875rem;
    opacity: 0.6;
    margin-bottom: 1rem;
}
#products .swiper-slide .btn {
    opacity: 0;
}

#products .swiper-slide:hover .product__img img {
    /*height: 340px;*/
    top: -5%;
}
#products .swiper-slide:hover .product__img::before {
    display: block;
}
#products .swiper-slide:hover .product__title {
    font-size: 2.25rem;
    line-height: 2.5rem;
}
#products .swiper-slide:hover .product__info {
    opacity: 1;
}

#products .swiper-slide:hover .btn {
    opacity: 1;
}
