.newscontent {
  display: block;
  margin: 2% 1% 0 1%;
  flex: 0 31%;
  min-height: 100%;
  background: #fff;
}

.newscontent.loadmore {
  display: none;
}

#loadmore-area {
    position: relative;
    display: block;
    float: left;
    width: calc(100% - 4em);
    margin: 2em;
}

#loadMore {
	font-family: 'Conthrax Rg';
  font-size: 1rem;
    font-weight: bold;
    font-style: italic;
    background: #facd1a;
    color: #fff;
    border: solid 1px #facd1a;
    border-radius: 30px;
    padding: 2px 30px;
    margin-top: 3em;
    transition: all ease .5s;
    display: table;
    margin-left: auto;
    margin-right: auto;
    transition: .3s;
	text-transform: uppercase;
}

#loadMore::before {
  display: block;
  content: "";
  position: absolute;
  left: calc(-50vw + 50%);
  width: 100vw;
  height: 2px;
  background: #facd1a;
  z-index: -1;
  top: 80%;
  transform: translate(0, -50%);
}

#main-col #loadMore::before {
  display: none;
  content: "";
  width: 0;
}

#loadMore.noContent::before {
  display: none;
  content: "";
  width: 0;
}

#loadMore:hover {
    background: #000;
    color: #fff;
    border: solid 1px #000;
}

.noContent {
  color: #000 !important;
  background-color: transparent !important;
  pointer-events: none;
}
