@charset "utf-8";
/* CSS Document */
#newsList {
  padding-right: -55px !important;
  margin: 10px -20px -10px 0;
}
#newsList > div {
  padding: 0 20px 0 0;
  margin-bottom: 20px;
}
.row.display-flex {
  display: flex;
  flex-wrap: wrap;
}
.row.display-flex > [class*='col-'] {
  flex-grow: 1;
  margin: 0 0px 25px 0;
}
.newsItem {
  display: inline-block;
  border: 1px solid #c4c4c4;
  height: 100%;
  background: url("../../assets-global/img/icons/news.svg")bottom 7px right 7px no-repeat, linear-gradient(175deg,rgba(0, 10, 36, 0.0) 50%, rgba(115, 115, 115, 0.25) 100%);
  background-size: 32px auto, auto;
  transition: transform .2s;
}
.newsItem:hover {
  border-color: #999999;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.15), 0 6px 20px 0 rgba(0, 0, 0, 0.15);
  transform: scale(1.03);
  transform-origin: 50% 50%;
}
.newsItem:hover a, .newsItem a:focus {
  color: #337ab7;
}
.newsItem img {
  width: 100%;
  height: auto;
  border-bottom: solid 1px #c4c4c4;
}
.newsItem a {
text-decoration: none;
color: #444444;
}
.newsItem .newsText {
  padding: 7px 10px;
}
@media screen and (max-width: 480px) {
  .row.display-flex > [class*='col-'] {
    width: 50%;
  }
  #newsList div:nth-of-type(1n + 3) {
    display: none;
  }
}
@media screen and (max-width: 1199px) {
  #newsList div:nth-of-type(1n + 4) {
    display: none;
  }
}
