@font-face {
  font-family: 'Reddit Mono';
  src: url('../font/RedditMono-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'Reddit Mono';
  src: url('../font/RedditMono-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}

.headline {
  font-family: Reddit Mono;
  font-weight: 700;
  text-transform: uppercase;
}
h1.headline {font-size:1.6em;}
h2.headline {font-size:1.3em;}

.para {
  font-family: Reddit Mono;
  font-weight: 500;
}

.highlight {
  background: linear-gradient(120deg, #ffeb3b 0%, #ffeb3b 100%);
  background-size: 100% 0.8em;
  background-repeat: no-repeat;
  background-position: 0 0.6em;
  padding: 0.2em;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}



html,
body {
  height: 100%;
  word-wrap: break-word;
}

html,
body,
div {
  -webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
  -moz-box-sizing: border-box;    /* Firefox, other Gecko */
  box-sizing: border-box;         /* Opera/IE 8+ */
}


button {
  cursor: pointer;
  white-space: nowrap;
}

pre {
  overflow-x: scroll;
  background: #222;
  color: white;
  padding: 1rem;
  border-radius: 3px;
  white-space: pre-wrap;
}

code {
  background: #ddd;
  padding: 2px 5px;
  color: #111;
  border-radius: 2px;
}



/* tables */
table {
  border-collapse: collapse;
  margin: 0 0 10px;
}
th, td {
  border: 1px solid black;
  padding: 4px;
  text-align: left;
}
th {
  background-color: #f2f2f2;
}



/* forms */
.form-group,
.form-checkbox {
  display: block;
  width: 100%;
  margin-bottom: 15px;
}

.form-label {
  display: block;
  width: 100%;
  font-weight: bold;
}
.form-control {}
.form-help-text {
  display: block;
  margin-top: 2.5px;
  color: #777;
}
.form-control-msg {
  display: block;
  margin: 2px;
  font-weight: bold;
}
.form-control-msg.has-error {
  color: red;
}
.form-control-msg.has-success {
  color: green;
}

/* checkbox radio styles */
.form-group-checkbox {
  display: flex;
  margin: 2px 0;
  align-items: center;
}
.form-group-checkbox > input[type="radio"],
.form-group-checkbox > input[type="checkbox"] {
  margin: 0 5px 0 0;
}
.form-group-checkbox label:hover,
.form-group-checkbox input:hover {
  cursor: pointer;
}


.btn-download:hover {
  background-color: #0056b3;
  border-color: #0056b3;
  color: white;
  text-decoration: none;
}

.btn-download i {
  font-size: 10px;
}



