/* * {
    margin: 0;
    padding: 0;
}

body {
    background: white;
    font-family: Georgia, serif;
    color: #fff;
    font-size: 14px;
}

h1, h2, h4, h5, h6 {
    text-align: center;
    color: grey;
    margin-bottom: 5px;
}

h1 {
    font-size: 18px;
}

h2 {
    font-size: 14px;
} */


#dates {
  width: 100%;
  height: 60px;
  display: flex;
  justify-content: center;
  overflow: hidden;
}
#dates .selected {
  font-size: 2rem;
  color: #3287d2;
}
.dates_year {
  list-style: none;
  font-size: 1.0rem;
  display: flex;
  justify-content: center;
  width: 100px;
  height: 50px;
}
#dates a {
  color: #bebebe;
  line-height: 2.1rem;
  text-decoration: none;
  text-align: center;
  transition: 0.5s;
}
#dates a:after {
  content: '';
  position: relative;
  z-index: 2;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #bebebe;
  display: inline-block;
  /* bottom: -2rem;
  left: -50%; */
}
#dates a.selected::after {
  background-color: #3287d2;
  bottom: 3px;
}
.bar {
  height: 2px;
  background: linear-gradient(to right, white, #bebebe, white);
  position: relative;
  z-index: 1;
  width: 100%;
  top: 52px;
}

#timeline {
  width: 100%;
  height: auto;
  overflow: hidden;
  position: relative;
}
#timeline img {
  margin-top: 45px;
}

.issues_year {
  margin: 0;
  padding: 0;
  width: 600px;
  /* width: auto; */
  height: 100%;
  list-style: none;
  float: left;
  display: flex;
  align-items: stretch;
  justify-content: center;
}
.issues_img {
  width: 100%;
  padding: 0 1rem;
}
#issues li img {
  margin: 0;
  width: 100%;
}

.year {
  margin: 0;
  width: 100%;
  color: grey;
  font-size: 2.8rem;
  color: rgba(54, 54, 54, 0.726);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.description {
    color: grey;
    font-size: 1.3rem;
    font-weight: normal;
    color: rgba(54, 54, 54, 0.726);
}

#tnext,
#tprev {
    position: relative;
    top: 50%;
    width: 100%;
    color: #bebebe;
    font-weight: 200;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    flex-direction: row;
    -moz-user-select: none;  /* for Firefox */
    -webkit-user-select: none;
}

#tnext {
  justify-content: flex-start;
}
#tprev {
  justify-content: flex-end;
}

#tnext img, #tprev img {
  margin: 0 1rem;
  height: 3rem;
}

@media (max-width: 1200px) {
  .issues_year {
    width: calc(50vw - 30px);
  }
  #tnext, #tprev {
    top: 50%;
  }
}

@media (max-width: 767.98px) {
  .issues_year {
    width: calc(66.66vw - 30px);
    flex-direction: column;
    align-items: center;
  }
  .issues_img {
    padding: 0;
  }
  .year {
    font-size: 1.8rem;
    display: inline-block;
    justify-content: flex-start;
    width: auto;
  }
  .description {
    font-size: 1.2rem;
  }
  #tnext img, #tprev img {
    margin: 0;
  }
  #tnext span, #tprev span {
    display: none;
  }
}
