/* Titles */
div.sctext p.title-1 {
  font-size: 20px;
  margin-top: 20px;
  margin-bottom: 10px;
}
div.sctext p.title-2 {
  font-size: 14px;
  font-weight: 600;
  margin-top: 15px;
  margin-bottom: 10px;
}

/* Default green and black buttons */
button.green {
  background-color: #aed580;
  border: 0;
  padding: 10px 20px;
  font-size: 12px;
  font-weight: 600;
  transition: background-color 0.2s, color 0.2s;
  color: black;
}
button.green:hover {
  background-color: #333;
  color: white;
  cursor: pointer;
}
button.green:active {
  background-color: #888;
}
button.black {
  background-color: #333;
  border: 0;
  padding: 10px 20px;
  color: white;
  font-size: 12px;
  font-weight: 600;
  transition: background-color 0.2s, color 0.2s;
  width: auto;
}
button.black:hover {
  background-color: #aed580;
  color: black;
  cursor: pointer;
}
button.black:active {
  background-color: #95bc67;
}

/* Horizontal Tile */
div.h-tile {
  border: solid 1px #ddd;
  margin-top: 15px;
  margin-bottom: 15px;
}
div.h-tile table {
  width: 100%;
}
div.h-tile table tbody tr td:first-of-type {
  vertical-align: middle;
  width: 70px;
}
div.h-tile table tbody tr td:first-of-type img {
  margin: 20px;
}
div.h-tile:hover {
  cursor: pointer;
  box-shadow: 4px 4px 8px 1px #ddd;
}
div.h-tile table tbody tr td:last-of-type {
  width: 30px;
  vertical-align: top;
  height: 100%;
}
div.h-tile table tbody tr td:last-of-type {
  /* #aed580; */
  background-color: white;
  color: white;
  font-size: 20px;
  font-weight: 600;
  text-align: center;
  vertical-align: middle;
  -webkit-transition: background-color 0.1s;
  -moz-transition: background-color 0.1s;
  -o-transition: background-color 0.1s;
  transition: background-color 0.1s;
  transition-timing-function: ease-in;
  -moz-transition-timing-function: ease-in;
  -webkit-transition-timing-function: ease-in;
  -o-transition-timing-function: ease-in;
}
div.h-tile:hover table tbody tr td:last-of-type {
  background-color: #6b9f40;
}
div.h-tile table tbody tr td:nth-child(2) {
  vertical-align: middle;
}
div.h-tile table tbody tr td:nth-child(2) p:first-of-type {
  font-weight: 600;
  font-size: 14px;
  margin-top: 10px;
}
div.h-tile table tbody tr td:nth-child(2) p:last-of-type {
  margin-bottom: 10px;
}

/* Modal image */

/* News */
div.sctext p.month {
  margin-top: 20px;
  margin-bottom: 10px;
  border-bottom: solid 2px #888; /*#aed580; */
  font-size: 15px;
}

/* News Accordion */
button.news-accordion {
  background-color: white;
  color: black;
  cursor: pointer;
  padding-top: 2px;
  padding-bottom: 8px;
  width: 100%;
  text-align: left;
  font-weight: 600;
  border: white solid 2px;
  transition: 0.2s;
  border-radius: 3px;
  font-size: 13px;
  padding-left: 5px;
}
button.news-accordion.active,
button.news-accordion:hover {
  /* border: #aed580 solid 2px; */
  text-decoration: underline;
}
span.news-caret {
  content: url(/Frontend/Images/icons/caret-right-solid.png);
  width: 12px;
  height: 12px;
  margin-top: 8px;
  margin-right: 5px;
  text-align: center;
  transform: rotate(0deg);
  transition: transform 0.2s linear;
}
button.news-accordion.active span.news-caret {
  transform: rotate(90deg);
  transition: transform 0.2s linear;
}
div.news-panel {
  /* padding: 20px; */
  /* display: none; */
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.2s ease-out;
}
div.sctext div.news-panel p:first-of-type {
  margin-top: 10px;
}