/*///////////////////////////////////////////////////////////////////////////*/
/*                                                    Repositories overview  */
/*///////////////////////////////////////////////////////////////////////////*/
/*
.main .column-12:first-child {
  padding-top: 0.5em;
}

.main .column-12:nth-child(2) {
  padding-top: 0.5em;
}*/

/*.repo-button {
  display: block;
  border-style: solid;
  border-width: 1px;
  margin: 1em;

}*/

.repositories .row {
  /*display: flex;*/
  margin-bottom: 2.2em;
  background: transparent;
}

/*.repositories .row:first-child {
  margin-top: 1em;
}*/

.repositories .row:last-child {
  margin-bottom: 1.5em;
}

.repositories .row h2 {
  margin-bottom: 0.05em;
  font-weight: normal;
}

.repositories .row p {
  margin-bottom: 0em;
  margin-top: 0.2em;
}

.repositories hr {
  height: 3px;
  border: none;
  background-color: #212121;
  text-align:left;
  margin: 0 auto 0 0;
}


/*///////////////////////////////////////////////////////////////////////////*/
/*                                                               News panel  */
/*///////////////////////////////////////////////////////////////////////////*/

.newsFeed {
  cursor: pointer;
}

.newsPanel {
  position: fixed;
  overflow-y: auto;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  visibility: hidden;
  -webkit-box-shadow: 0px 0px 15px rgba(0,0,0,.8);
  -moz-box-shadow: 0px 0px 15px rgba(0,0,0,.8);
  box-shadow: 0px 0px 15px rgba(0,0,0,.8);
  /* Force Hardware Acceleration */
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: translateY(100%);
  -moz-transform: translateY(100%);
  -ms-transform: translateY(100%);
  -o-transform: translateY(100%);
  transform: translateY(100%);
  -webkit-transition: -webkit-transform 0.4s 0s, visibility 0s 0.4s;
  -moz-transition: -moz-transform 0.4s 0s, visibility 0s 0.4s;
  transition: transform 0.4s 0s, visibility 0s 0.4s;
  -webkit-transition-timing-function: cubic-bezier(0.67, 0.15, 0.83, 0.83);
  -moz-transition-timing-function: cubic-bezier(0.67, 0.15, 0.83, 0.83);
  transition-timing-function: cubic-bezier(0.67, 0.15, 0.83, 0.83);
}

.newsPanel.is-visible {
  visibility: visible;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition: -webkit-transform 0.4s 0s, visibility 0s 0s;
  -moz-transition: -moz-transform 0.4s 0s, visibility 0s 0s;
  transition: transform 0.4s 0s, visibility 0s 0s;
  -webkit-transition-timing-function: cubic-bezier(0.67, 0.15, 0.83, 0.83);
  -moz-transition-timing-function: cubic-bezier(0.67, 0.15, 0.83, 0.83);
  transition-timing-function: cubic-bezier(0.67, 0.15, 0.83, 0.83);
}
.newsPanel.is-visible > div {
  /* smooth scrolling on iOS */
  -webkit-overflow-scrolling: touch;
}

.newsPanel .close {
  display: block;
  height: 32px;
  width: 32px;
  position: absolute;
  top: 10px;
  right: 10px;
  /*background: url(assets/img/x.svg) no-repeat center center;*/
}

.newsPanel img {
  width: 100%;
  height: 100%;
}

.newsPanel h1 {
  margin-top: 2.5em;
  margin-bottom: 1.5em;
}
.newsPanel p {
  margin-bottom: 2em;
}
.newsPanel .newsDate {
  display: block;
  font-weight: bold;
  margin-bottom: 0.5em;
}

@media only screen and (min-width: 480px) {
  .newsPanel h1 {
    margin-top: 30px;
    margin-bottom: 2em;
  }
  .newsPanel .close {
    top: 50px;
    right: 10px;
  }
  .repositories hr {
    height: 4px;
  }
}
