@charset "utf-8";
/* CSS Document */

/* reset */


html, body, div, span, applet, object, iframe, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section { display: block }

body { line-height: 1 }

ol, ul { list-style: none }

blockquote, q { quotes: none }

blockquote:before, blockquote:after, q:before, q:after {
  content: '';
  content: none
}

table {
  border-collapse: collapse;
  border-spacing: 0
}

/* Styles */

* { box-sizing: border-box; }

body, .block > div, .details a.follow strong {
  margin: 0;
  padding: 0;
}

html, body { min-height: 100%; }

body {
  font-family: 'Roboto', Sans-Serif;
  font-size: 14px;
  letter-spacing: 0.5px;
  line-height: 16px;
  color: gray;
  background-color: #fafafa;
}

.block {
  max-width: 100%;
  width: 100%;
  height: 100%;
  float: left;
  padding: 15px;
  z-index: 10;
  background-color: #fafafa;
  overflow: hidden;
  margin: 50px auto;
  align-content:center;
}
@media screen and (max-width: 599px) {

.block { max-width: 100%; }
}

.block > div {
  display: block;
  position: relative;
  padding: 0 0 0 35px;
  border-bottom: 1px solid white;
  background-color: #e6e6e6;
  color: black;
}

.block > div:nth-child(1):before {
  content: "1";
  width: 20px;
  font-weight: bold;
  text-align: center;
  position: absolute;
  left: 0;
  top: 0;
  background-color:#FFB703;
  padding: 7.5px;
  margin: 0;
  color: white;
}

.block > div:nth-child(2):before {
  content: "2";
  width: 20px;
  font-weight: bold;
  text-align: center;
  position: absolute;
  left: 0;
  top: 0;
  background-color: #FFB703;
  padding: 7.5px;
  margin: 0;
  color: white;
}

.block > div:nth-child(3):before {
  content: "3";
  width: 20px;
  font-weight: bold;
  text-align: center;
  position: absolute;
  left: 0;
  top: 0;
  background-color: #FFB703;
  padding: 7.5px;
  margin: 0;
  color: white;
}

.block > div:nth-child(4):before {
  content: "4";
  width: 20px;
  font-weight: bold;
  text-align: center;
  position: absolute;
  left: 0;
  top: 0;
  background-color: #FFB703;
  padding: 7.5px;
  margin: 0;
  color: white;
}

.block > div:nth-child(5):before {
  content: "5";
  width: 20px;
  font-weight: bold;
  text-align: center;
  position: absolute;
  left: 0;
  top: 0;
  background-color: #FFB703;
  padding: 7.5px;
  margin: 0;
  color: white;
}

.block > div:nth-child(6):before {
  content: "6";
  width: 20px;
  font-weight: bold;
  text-align: center;
  position: absolute;
  left: 0;
  top: 0;
  background-color: #FFB703;
  padding: 7.5px;
  margin: 0;
  color: white;
}

.block > div:nth-child(7):before {
  content: "7";
  width: 20px;
  font-weight: bold;
  text-align: center;
  position: absolute;
  left: 0;
  top: 0;
  background-color: #FFB703;
  padding: 7.5px;
  margin: 0;
  color: white;
}

.block > div:nth-child(8):before {
  content: "8";
  width: 20px;
  font-weight: bold;
  text-align: center;
  position: absolute;
  left: 0;
  top: 0;
  background-color: #FFB703;
  padding: 7.5px;
  margin: 0;
  color: white;
}

.block > div:nth-child(9):before {
  content: "9";
  width: 20px;
  font-weight: bold;
  text-align: center;
  position: absolute;
  left: 0;
  top: 0;
  background-color: #FFB703;
  padding: 7.5px;
  margin: 0;
  color: white;
}

.block > div input + label {
  cursor: pointer;
  display: block;
  padding: 7.5px 15px;
  background-color: #D1BC63;
  -webkit-transition: background-color 0.25s ease-in-out 0.5s, color 0.25s ease-in-out 0.5s;
  transition: background-color 0.25s ease-in-out 0.5s, color 0.25s ease-in-out 0.5s;
  color: black;
}

.block > div input ~ div {
  visibility: hidden;
  max-height: 0;
  padding: 0;
  opacity: 0;
  -webkit-transition: all 0.5s ease-in-out 0.2s, opacity 0.25s ease-in-out 0.25s, padding 0s ease-in-out 0s;
  transition: all 0.5s ease-in-out 0.2s, opacity 0.25s ease-in-out 0.25s, padding 0s ease-in-out 0s;
}

.block > div input ~ div p { padding: 0 15px; }

.block > div input:checked + label {
  background-color:#706647;
  -webkit-transition: background-color 0s ease-in-out 0s;
  transition: background-color 0s ease-in-out 0s;
  color:#fff;
}

.block > div input:checked ~ div {
  display: block;
  opacity: 1;
  visibility: visible;
  max-height: 100%;
  padding: 15px 0;
  -webkit-transition: all 0.5s ease-in-out 0.2s, opacity 0.25s ease-in-out 0.5s, padding 0s ease-in-out 0s;
  transition: all 0.5s ease-in-out 0.2s, opacity 0.25s ease-in-out 0.5s, padding 0s ease-in-out 0s;
}

