:root {
    --bottom: 50px;
}

/* left menu */
.border_news li {
    margin-bottom: 25px;
}

.title_popular {
    color: #000;
}

.title_popular:hover {
    color: rgb(53, 125, 196);
}

.popular:nth-child(2) {
    border-top: 0;
}

.popular {
    padding: 25px 0;
    border-top: 1px solid #e8e8e8;
}

.desc-tags {
    color: #000;
    font-size: 12px;
    font-weight: 400;
    line-height: 12px;
    cursor: pointer;
    padding: 3px;
    transition: color background-color .3s;
}

.desc-tags:hover {
    color: #fff;
    background-color: rgb(53, 125, 196);
    border-radius: 3px;

}

/* info-header */
.info-header {
    display: flex;
    flex-flow: row nowrap;
    margin-bottom: var(--bottom);
}

.date-top {
    margin-right: 10px;
}

.current-tags {
    display: flex;
}

.current-tags p {
    border: none;
    margin-right: 15px;
    padding: 0 10px;
    width: fit-content;
    height: 25px;
    background-color: yellow;
    border-radius: 50px;
}

/* swiper */

.slider {
    width: 100%;
    height: 60dvh;
    margin-bottom: var(--bottom);
    cursor: grab;
}

.slider .swiper {
    width: 100%;
    height: 100%;
}

.slider .swiper-slide {
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}

.slider .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover !important;
}

.suggestions .swiper-button-next::after,
.suggestions .swiper-button-prev::after {
    content: none;
}

.suggestions .swiper-button-next,
.suggestions .swiper-button-prev {
    outline: pink;
    display: flex;
    flex-flow: row nowrap;
}

div.swiper-button-next,
div.swiper-button-prev {
    background-color: #fff;
    height: 50px;
    width: 50px;
    border-radius: 50%;
}

/* swiper-item */

.slide {
    height: 150px;
    padding: 15px;
    display: flex;
    flex-flow: row nowrap;
    border: #e8e8e8 solid 1px;
}

.slide picture {
    margin-left: 20px;
}

.swiper-item {
    width: 100%;
    display: flex;
    flex-flow: column nowrap;
    align-items: flex-end;
    text-align: end;
}


/* info text */
.desc {
    font: 16px;
    text-align: justify;
}

/* suggestions news */

.suggestions {
    margin-bottom: var(--bottom);
}

/* prev next news */

.otherBlock {
    display: flex;
    flex-flow: row nowrap;
    margin-bottom: var(--bottom);
}

.next-block,
.prev-block {
    padding: 20px;
    display: flex;
    border: #e8e8e8 solid 1px;
}

.block-item-next {
    margin-right: 50px;
    width: 100%;
    display: flex;
    flex-flow: column nowrap;
    align-items: flex-end;
}

.next-block picture {
    margin-right: 20px;
}

.block-item-prev {
    margin-left: 50px;
    width: 100%;
    display: flex;
    flex-flow: column nowrap;
    align-items: flex-start;
}

.prev-block picture {
    margin-left: 20px;
}

.block-item span {
    color: #696969;
}

.block-item-next a,
.block-item-prev a {
    color: #000;
}

.prev-block img,
.next-block img{
    width: 150px;
    height: 150px;
}

/* prefooter */

.prefooter {
    display: flex;
    flex-flow: row nowrap;
    margin-bottom: var(--bottom);
}

.left {
    display: inherit;
    justify-content: flex-start;
}

.right {
    display: inherit;
    justify-content: flex-end;
}

.back {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.back a{
    color: #000;
}