/*add to the final element containing the text*/
/*http://hackingui.com/front-end/a-pure-css-solution-for-multiline-text-truncation/*/
/*https://codepen.io/natonischuk/pen/QbGWBa*/
/*adjustHeight parameter is needed because Chrome seems to not be consistent with other browsers and for small screen sizes displays top of the letters in the line that should be hidden - and we need to minimally adjust to cover that*/
@media only screen and (min-width: 350px) {
  .wrap-categories {
    width: 70% !important; }
  .wrap-regions {
    width: 30% !important; } }

@media only screen and (min-width: 500px) {
  .wrap-categories {
    width: 70% !important; }
  .wrap-regions {
    width: 30% !important; } }

.breaking_news_element {
  width: 100%;
  margin: 1% 0 2% 0;
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none; }

.breaking_news_element .breaking-news-main-container {
  width: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  border: 1px solid #D8D8D8; }

.breaking_news_element .breaking-news-main-container .left-panel {
  width: 100%; }

.breaking_news_element .breaking-news-main-container .left-panel a {
  text-decoration: none; }

.breaking_news_element .breaking-news-main-container .left-panel .left-panel-content-image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  width: 100%;
  border-right: 1px solid #D8D8D8; }

.breaking_news_element .breaking-news-main-container .left-panel .left-panel-content-image .image-container {
  background-color: transparent;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  width: 100%;
  padding-top: 60%;
  position: relative; }

.breaking_news_element .breaking-news-main-container .left-panel .left-panel-content-image .image-container .overlay {
  position: absolute;
  bottom: 0;
  color: #FFF;
  background-color: #d65353;
  width: 35%;
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  padding: 6px 10px;
  text-transform: uppercase;
  min-width: 130px; }

.breaking_news_element .breaking-news-main-container .left-panel .left-panel-content-image .title-container {
  width: 100%;
  padding: 3% 4% 0 4%; }
  .breaking_news_element .breaking-news-main-container .left-panel .left-panel-content-image .title-container .title-content {
    border-left: 4px solid #d65353;
    margin-top: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 10px; }
  .breaking_news_element .breaking-news-main-container .left-panel .left-panel-content-image .title-container .title-content .title {
    width: 94%;
    padding-left: 13px;
    font-size: 20px;
    color: #666;
    font-weight: bold;
    position: relative;
    height: 2.4em;
    margin: 0.5em 0 1em 0;
    overflow: hidden;
    line-height: 1.2em;
    font-size: 1.2em; }
  .breaking_news_element .breaking-news-main-container .left-panel .left-panel-content-image .title-container .title-content .title:after {
    content: "";
    text-align: right;
    position: absolute;
    bottom: 0;
    right: 0;
    width: 70%;
    height: 1.2em;
    background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), color-stop(80%, white));
    background: linear-gradient(to right, rgba(255, 255, 255, 0), white 80%); }
  .breaking_news_element .breaking-news-main-container .left-panel .left-panel-content-image .title-container .title-content .summary {
    width: 94%;
    padding-left: 13px;
    position: relative;
    height: 3.6em;
    margin: 0 0 1em 0;
    overflow: hidden;
    margin-bottom: 0px;
    line-height: 1.2em;
    font-size: 1.2em; }
  .breaking_news_element .breaking-news-main-container .left-panel .left-panel-content-image .title-container .title-content .summary:after {
    content: "";
    text-align: right;
    position: absolute;
    bottom: 0;
    right: 0;
    width: 70%;
    height: 1.2em;
    background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), color-stop(80%, white));
    background: linear-gradient(to right, rgba(255, 255, 255, 0), white 80%); }
  .breaking_news_element .breaking-news-main-container .left-panel .left-panel-content-image .title-container .title-content .summary p {
    color: #666;
    margin-bottom: 0px;
    margin-top: 0px; }

.breaking_news_element .breaking-news-main-container .left-panel .left-panel-content-image .title-container .title-content .title {
  color: #555; }

.breaking_news_element .breaking-news-main-container .left-panel .left-panel-content-no-image {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-right: 1px solid #D8D8D8; }

.breaking_news_element .breaking-news-main-container .left-panel .left-panel-content-no-image .title-container {
  width: 100%;
  padding-left: 5%;
  padding-top: 25px;
  padding-bottom: 0px; }
  .breaking_news_element .breaking-news-main-container .left-panel .left-panel-content-no-image .title-container .title-content {
    border-left: 4px solid #d65353;
    margin-top: 1%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 10px; }
  .breaking_news_element .breaking-news-main-container .left-panel .left-panel-content-no-image .title-container .title-content .title {
    width: 94%;
    padding-left: 13px;
    font-size: 20px;
    color: #666;
    font-weight: bold;
    position: relative;
    height: 2.4em;
    margin: 0.5em 0 1em 0;
    overflow: hidden;
    line-height: 1.2em;
    font-size: 1.2em; }
  .breaking_news_element .breaking-news-main-container .left-panel .left-panel-content-no-image .title-container .title-content .title:after {
    content: "";
    text-align: right;
    position: absolute;
    bottom: 0;
    right: 0;
    width: 70%;
    height: 1.2em;
    background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), color-stop(80%, white));
    background: linear-gradient(to right, rgba(255, 255, 255, 0), white 80%); }
  .breaking_news_element .breaking-news-main-container .left-panel .left-panel-content-no-image .title-container .title-content .summary {
    width: 94%;
    padding-left: 13px;
    position: relative;
    height: 3.6em;
    margin: 0 0 1em 0;
    overflow: hidden;
    margin-bottom: 0px;
    line-height: 1.2em;
    font-size: 1.2em; }
  .breaking_news_element .breaking-news-main-container .left-panel .left-panel-content-no-image .title-container .title-content .summary:after {
    content: "";
    text-align: right;
    position: absolute;
    bottom: 0;
    right: 0;
    width: 70%;
    height: 1.2em;
    background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), color-stop(80%, white));
    background: linear-gradient(to right, rgba(255, 255, 255, 0), white 80%); }
  .breaking_news_element .breaking-news-main-container .left-panel .left-panel-content-no-image .title-container .title-content .summary p {
    color: #666;
    margin-bottom: 0px;
    margin-top: 0px; }

.breaking_news_element .breaking-news-main-container .left-panel .left-panel-content-no-image .title-container .overlay-no-image {
  color: #FFF;
  background-color: #d65353;
  width: 35%;
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  padding: 15px 10px;
  text-transform: uppercase;
  min-width: 200px; }

.breaking_news_element .breaking-news-main-container .right-panel {
  width: 100%;
  height: auto;
  position: relative;
  margin-top: 30px; }

.breaking_news_element .breaking-news-main-container .right-panel a {
  text-decoration: none; }

.breaking_news_element .breaking-news-main-container .right-panel .overlay-stories {
  position: absolute;
  left: 0;
  color: #FFF;
  background-color: #d65353;
  text-align: center;
  font-size: 17px;
  font-weight: 700;
  padding: 10px 10px;
  width: auto; }

.breaking_news_element .breaking-news-main-container .right-panel .stories-container {
  height: auto;
  margin-top: 55px; }

.breaking_news_element .breaking-news-main-container .right-panel .stories-container .scroller-content {
  max-height: 520px;
  overflow: auto; }

.breaking_news_element .breaking-news-main-container .right-panel .stories-container .scroller-content .stories {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  height: 50%;
  padding-bottom: 15px;
  padding-right: 15px;
  padding-left: 15px; }

.breaking_news_element .breaking-news-main-container .right-panel .stories-container .scroller-content .stories .story-clock {
  display: inline; }

.breaking_news_element .breaking-news-main-container .right-panel .stories-container .scroller-content .stories .story-clock .clock {
  display: inline;
  font-size: 1.2em;
  color: #d65353;
  margin-top: 10px; }

.breaking_news_element .breaking-news-main-container .right-panel .stories-container .scroller-content .stories .story-clock .time-stamp {
  display: inline;
  font-size: 1em;
  color: #d65353;
  font-weight: 500;
  text-align: left;
  padding-left: 5px; }

.breaking_news_element .breaking-news-main-container .right-panel .stories-container .scroller-content .stories .content {
  padding: 15px;
  background-color: #F7F7F7;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row; }

.breaking_news_element .breaking-news-main-container .right-panel .stories-container .scroller-content .stories .content.content-no-time {
  width: 97%; }

.breaking_news_element .breaking-news-main-container .right-panel .stories-container .scroller-content .stories .content .story-image {
  min-width: 160px;
  min-height: 100px;
  max-width: 160px;
  max-height: 100px;
  background-color: transparent;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat; }

.breaking_news_element .breaking-news-main-container .right-panel .stories-container .scroller-content .stories .content .title-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-left: 15px;
  -ms-flex-item-align: start;
  align-self: flex-start;
  width: calc(100% - 10px); }

.breaking_news_element .breaking-news-main-container .right-panel .stories-container .scroller-content .stories .content .title-container .story-title {
  width: 100%;
  color: #555;
  font-weight: bold;
  position: relative;
  height: 2.4em;
  margin: 0 0 1em 0;
  overflow: hidden;
  margin-bottom: 0px;
  line-height: 1.2em;
  font-size: 1.2em; }

.breaking_news_element .breaking-news-main-container .right-panel .stories-container .scroller-content .stories .content .title-container .story-title:after {
  content: "";
  text-align: right;
  position: absolute;
  bottom: 0;
  right: 0;
  width: 70%;
  height: 1.2em;
  background: -webkit-gradient(linear, left top, right top, from(rgba(247, 247, 247, 0)), color-stop(80%, #f7f7f7));
  background: linear-gradient(to right, rgba(247, 247, 247, 0), #f7f7f7 80%); }

.breaking_news_element .breaking-news-main-container .right-panel .stories-container .scroller-content .stories .content .title-container .story-summary {
  width: 100%;
  color: #555;
  position: relative;
  height: 3.6em;
  margin: 0 0 1em 0;
  overflow: hidden;
  margin-bottom: 0px;
  line-height: 1.2em;
  font-size: 1.1em; }

.breaking_news_element .breaking-news-main-container .right-panel .stories-container .scroller-content .stories .content .title-container .story-summary:after {
  content: "";
  text-align: right;
  position: absolute;
  bottom: 0;
  right: 0;
  width: 70%;
  height: 1.2em;
  background: -webkit-gradient(linear, left top, right top, from(rgba(247, 247, 247, 0)), color-stop(80%, #f7f7f7));
  background: linear-gradient(to right, rgba(247, 247, 247, 0), #f7f7f7 80%); }

.breaking_news_element .breaking-news-main-container .right-panel .stories-container .scroller-content .stories .content .title-container .story-summary p {
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 3;
  display: -webkit-box;
  -webkit-box-orient: vertical; }

@media only screen and (min-width: 768px) {
  .breaking_news_element .breaking-news-main-container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row; }
  .breaking_news_element .breaking-news-main-container .left-panel {
    width: 50%; }
  .breaking_news_element .breaking-news-main-container .left-panel .left-panel-content-image .image-container .overlay {
    padding: 15px 10px; }
  .breaking_news_element .breaking-news-main-container .left-panel .left-panel-content-no-image .title-container {
    padding-left: 5%;
    padding-top: 27%;
    padding-bottom: 33%; }
  .breaking_news_element .breaking-news-main-container .right-panel {
    width: 50%;
    margin-top: 0px; }
  .breaking_news_element .breaking-news-main-container .right-panel .stories-container .scroller-content .stories .content .title-container {
    width: calc(100% - 20px); } }

