
.block_news {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-size: 20px;
}
.block_news.main-content {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
}

.block_news__inner {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.block_news__item {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    position: relative;
}

.block_news__item:after {
    position: absolute;
    width: 100%;
    content: '';
    height: 1px;
    bottom: -5px;
    background: var(--light-gray);
}

.block_news__item:first-child {
    margin-top: 20px;
}

.block_news__item:last-child {
    margin-bottom: 20px;
}

.block_news__plus, .block_news__void {
    position: relative;
    width: 20px;
    height: 20px;
}

.block_news__plus:after, .block_news__plus:before {
    position: absolute;
    /* background: #517c71ff; */
    background: url(https://alteya.941585-cv65798.tmweb.ru/local/templates/alteya/img/guarantees/arrow.svg) center no-repeat;
    background-size: cover;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    content: '';
    width: 30px;
    height: 15px;
    transition: all .3s linear;
}

.block_news__plus:before {
    width: 2px;
    height: 20px;
    display: none;
}

.block_news__content {
    width: 100%;
    max-width: 1100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 10px;
}

.block_news__title, .block_news__date, .block_news__body {
    font-size: 16px;
}

.block_news__title {
    text-transform: uppercase;
    font-weight: 600;
    text-align: center;
    font-family: "HouschkaPro-DemiBold";
}

.block_news__date {
    color: rgba(0,0,0,0.5);
    text-align: center;
}

.block_news__body {
    opacity: 0;
    height: 0;
    /*transition: all .3s linear;*/
    user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.block_news__item.active .block_news__body {
    opacity: 1;
    height: 100%;
}

.block_news__item.active .block_news__plus:after, .block_news__item.active .block_news__plus:before {
    /* scaleY(-1) */
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
}

.block_news__body.block_news .subtitle{
    text-transform: uppercase;
  }
  .block_news__body.block_news h2.subtitle{
    margin: 10px 0 0 20px;
    position: relative;
    font-size: 24px;
  }
  .block_news__body.block_news h2.subtitle.rel::after, .block_news__body.block_news h2.subtitle.rel::before{
    display: block;
    position: absolute;
    content: '';
    background-color: var(--green);
    width: 10px;
    height: 1px;
    top: 50%;
    left: -15px;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
  }
  .block_news__body.block_news h2.subtitle.rel::before{
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
  }
  .block_news__body.block_news h3.subtitle {
    margin: 10px 0 0 0;
    font-weight: 500;
    font-size: 1.2rem
  }
  .block_news__body.block_news .list {
    text-decoration: none;
    list-style: none;
    padding: 0 0px 0 20px;
  }
  .block_news__body.block_news .list li {
    position: relative;
    margin: 10px 0;
  }
  .block_news__body.block_news .list li:before {
    position: absolute;
    display: block;
    content: '';
    width: 7px;
    height: 7px;
    border: 1px solid var(--green);
    border-radius: 5rem;
    -webkit-border-radius: 5rem;
    -moz-border-radius: 5rem;
    -ms-border-radius: 5rem;
    -o-border-radius: 5rem;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    left: -15px;
  }
  .block_news__body.block_news .link {
    text-decoration: none;
    color: var(--green);
    font: inherit;
  }

  .block_news__body.block_news p {
    line-height: 1.1rem;
  }
  .block_news__body.block_news li {
    position: relative;
    /* height: 1.1em; */
  }
  .block_news__body.block_news li::before {
    height: 1.1em;
    position: absolute;
    left: 0;
  }