html {
  position: relative;
  min-height: 100%;
}

body {
  /* Margin bottom by footer height */
  margin-bottom: 2rem;
  font-family: "Lora", serif;
  /* Background based on pattern from https://www.toptal.com/designers/subtlepatterns/ */
  background: White url(/images/xv.png) fixed;
}

body > .container {
  padding: 70px 30px 40px 30px;
}

.main-nav {
  background-color: DarkGreen;
  box-shadow: 0 0px 20px 5px black;
}

.main-nav .navbar-nav .nav-link {
  color: LemonChiffon;
  font-weight: bold;
}

.main-nav .nav-item {
  margin-right: 1rem;
}

.footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  /* Set the fixed height of the footer here */
  height: 2rem;
  line-height: 2rem;
  font-family: "Lora", serif;
  font-size: 0.75rem;
  border-top: 1px solid lightgrey;
  background-color: lightyellow;
  /*display: inline-table;*/
}
.footer .container {
  background-color: lightyellow;
  max-width: inherit;
}

.container .text-muted {
  margin: 10px 0;
}

/* START News Rotator */

.scrim {
  background: rgba(255, 255, 255, 0.6);
}

.carousel-item {
  height: 100%;
}

.carousel-item div.scrim {
  padding: 2rem;
}

.jumbotron {
  background: rgba(255, 240, 117, 1)
    url("/images/welcome-carousel/wall-hanging.jpg") center;
  background-size: cover;
  border-style: solid;
  border-color: black;
  padding: 1px;
  overflow: hidden;
}

.inherit-height-and-max-height {
  height: inherit;
  max-height: inherit;
}

.jumbotron h1,
p {
  text-shadow: 0 0 20px White;
}

.jumbotron .btn {
  text-shadow: none;
}

.carousel-indicators .active {
  background-color: rgba(128, 0, 0, 1);
}

.carousel-indicators li {
  background-color: rgba(128, 0, 0, 0.3);
}

.news-background-fill {
  background-position: center;
  background-size: cover;
}

.news-background-nofill {
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

.news-item {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.news-title {
}

.news-text {
  overflow: hidden;
}

.news-foreground-image {
  display: hidden;
}

.news-button {
}

/* Default layout */

/* Armory layout */

/* Image-Only layout */

/* Twitter layout */

/* END News Rotator */

code {
  font-size: 80%;
}

h1,
h2,
h3,
h4 {
  font-family: "Fondamento", cursive;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  margin-bottom: 1rem;
}

hr {
  border-top-color: rgba(0, 0, 0, 0.4);
}

@media (min-width: 576px) {
  .card-columns {
    column-count: 1;
  }
}

@media (min-width: 768px) {
  .dl-horizontal dt {
    float: left;
    width: 160px;
    overflow: hidden;
    clear: left;
    text-align: right;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .dl-horizontal dd {
    margin-left: 180px;
  }
  .card-columns {
    column-count: 2;
    column-fill: balance;
  }
}

@media (min-width: 1024px) {
  .card-columns {
    column-count: 3;
    column-fill: balance;
  }
}

.tab-pane {
  border: 1px solid #ddd;
  min-height: 12rem;
}

.dl-horizontal dd:after {
  clear: both;
}

.dl-horizontal dd:before,
.dl-horizontal dd:after {
  display: table;
  content: " ";
}

.tinct-tir-righ {
  background-color: RoyalBlue;
  color: White;
}

.tinct-summits {
  background-color: White;
  color: MediumBlue;
}

.tinct-an-tir {
  background-color: Gold;
  color: DarkSlateGrey;
}

blockquote {
  background-color: white;
  border: 1px black solid;
  padding: 1rem 1rem 0rem 1rem;
  font-size: inherit !important;
}

.notes {
  padding: 0.5rem 1rem;
  background-color: LightYellow;
  color: darkred;
  border-left: 0.25rem solid DarkRed;
  margin-left: inherit;
  margin-right: inherit;
  border-top: none;
  border-right: none;
  border-bottom: none;
}

.blazon {
  margin-bottom: 1rem;
  margin-left: 2rem;
  font-style: italic;
}

.callout {
  background: inherit;
  padding: 0.5rem 1rem;
  border-left: 0.25rem solid;
  margin-left: 45px;
  border-top: none;
  border-right: none;
  border-bottom: none;
}

.canada,
.usa,
.tip,
.warning,
.resources {
  background: inherit;
  color: #222222;
  padding: 0.5rem 1rem;
  margin-left: 45px;
  box-sizing: border-box;
  position: relative;
  border-left: 0.25rem solid;
  border-top: none;
  border-right: none;
  border-bottom: none;
}

.canada {
  border-left-color: DarkRed;
}

.usa {
  border-left-color: DarkBlue;
}

.tip {
  border-left-color: DarkGreen;
}

.warning {
  border-left-color: Red;
}

.resources {
  border-left-color: DarkBlue;
}

.canada:before,
.usa:before,
.tip:before,
.warning:before,
.resources:before {
  position: absolute;
  top: 0px;
  left: -50px;
  font-weight: normal;
  font-size: 2rem;
  padding-right: 1rem;
}

.tip:before,
.warning:before,
.resources:before {
  font-family: "Material Icons";
  font-size: 36px; /* Preferred icon size */
  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;
  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;
  /* Support for IE. */
  font-feature-settings: "liga";
}

.canada:before {
  content: "\1F1E8\1F1E6";
  color: Red;
}

.usa:before {
  content: "\1F1FA\1F1F8";
  color: Blue;
}

.tip:before {
  content: "done";
  color: Green;
}

.warning:before {
  content: "warning";
  color: Red;
}

.resources:before {
  content: "import_contacts";
  color: Blue;
}

textarea {
  font-family: "Consolas", monospace;
}

ol {
  list-style-type: decimal;
}

ol ol {
  list-style-type: upper-alpha;
}

ol ol ol {
  list-style-type: decimal;
}

ol ol ol ol {
  list-style-type: lower-alpha;
}

.resource-item {
  margin-left: 3rem;
  text-indent: -3rem;
}

.resource-item .badge {
  text-indent: initial;
}

.xdebug-var-dump {
  background: black;
  color: lightgreen;
}
