﻿@import url(../../../lib/font/fira/fira.css);
@import url(../../../lib/font/fontawesome/fontawesome.css);
@import url(../../../lib/font/roboto-mono/roboto-mono.css);

@import url(../../../lib/css/colors.css);

.bold {
  font-weight: 500;
}
/* remark specific styles */
.remark-slide-content {
  font-family: 'Fira Sans';
  font-size: 1.4rem;
  padding: 3em 4em 3em 4em;
  background-color: white;
  background-size: cover;
  background-blend-mode: overlay;
}
.remark-slide-content.top-narrow {
  padding-top: 1.5rem;
}
.remark-slide-content.title-closer h2,
.remark-slide-content.title-closer h3,
.remark-slide-content.title-closer h4 {
    margin-bottom: 0;
}
.remark-slide-content.small-code
  .remark-code {
  font-size: 0.7rem;
}
.remark-slide-content p,
.remark-slide-content a,
.remark-slide-content table,
.remark-slide-content pre,
.remark-slide-content h1,
.remark-slide-content h2,
.remark-slide-content h3,
.remark-slide-content h4,
.remark-slide-content h5,
.remark-slide-content ul,
.remark-slide-content li {
  color: var(--color-black);
  line-height: 1.3em;
  margin-top: 0;
  margin-bottom: 0.8rem;
}
.remark-slide-content ul,
.remark-slide-content li {
  margin-bottom: 0.2rem;
}
.remark-slide-content h1 {
  font-family: 'Fira Sans Condensed';
  font-size: 3.8rem;
  font-weight: 500;
  color: var(--color-red);
}
.remark-slide-content h2 {
  font-family: 'Fira Sans Condensed';
  font-size: 3.0rem;
  font-weight: 500;
  color: var(--color-blue);
}
.remark-slide-content h3 {
  font-size: 2.4rem;
  font-weight: 500;
  color: var(--color-violet);
  margin-bottom: 1.2rem;
}
.remark-slide-content h4 {
  font-size: 2.0rem;
  font-weight: 600;
  color: var(--color-yellow);
}
.remark-slide-content h5 {
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--color-turquise);
  margin-top: 1.4rem;
}
.remark-slide-content em {
  font-style: italic;
  font-weight: 300;
}
.remark-slide-content b {
  font-weight: 600;
}
.remark-slide-content a {
  color: black;
  font-family: 'Fira Sans Condensed';
  background-color: var(--color-light-blue);
  padding: 0 0.3em 0 0.3em;
  border-radius: 0.3rem;
  font-style: normal;
  text-decoration: none;
}
.remark-slide-content .small pre * {
  font-size: 0.8em;
  line-height: 1em;
  margin-bottom: 0.2em;
}
.remark-slide-content .medium pre * {
  font-size: 0.9em;
  line-height: 1em;
  margin-bottom: 0.2em;
}
.remark-slide-content img {
  max-width: 100%;
  max-height: 100%;
}
.remark-code, .remark-inline-code {
  font-family: 'Roboto Mono';
  font-weight: 500;
}
.remark-notes, .remark-notes-preview {
  font-family: 'Fira Sans Condensed';
  font-weight: 400;
}
.remark-slide-number {
  font-size: 1rem;
  color: var(--color-black);
  opacity:.5;
}
/* font-awesome specific syles */
.fa-inverse {
  color: var(--color-dark-gray);
}
/* lada's additions */
.credits {
  position: absolute;
  line-height: normal;
  left: 20px;
  bottom: 12px;
  font-size: 1rem;
  color: var(--color-dark-gray);
  opacity:.5;
}
.right-float {
  float: right;
}
.centered-txt { /* center div inside */
  display: block;
  text-align: center;
}
.centered-img { /* center itself */
  display: block;
  margin: auto;
}
.height-20 {
  height: 20vh;
}
.height-35 {
  height: 35vh;
}
.height-45 {
  height: 45vh;
}
.width-10 {
  width: 10rem;
}
.width-25 {
  width: 25rem;
}
.width-40 {
  width: 40rem;
}
.width-full {
  width: 100%;
}
/* framed table */
.framed table {
  border-collapse: collapse;
  border: 2px solid var(--color-black);
}
.framed td {
  padding: 0.2em;
  border: 1px solid var(--color-black);
}
.framed th {
  padding: 0.2em;
  border: 1px solid var(--color-black);
}

/* two column slide layout - obsolete, do be deleted */

.column:first-of-type {
  padding-right: 2%;
  float: left;
}
.column:last-of-type {
  float: right;
}

.split-60 .column:first-of-type {width: 58%}
.split-60 .column:last-of-type {width: 40%}

.split-50 .column:first-of-type {width: 48%}
.split-50 .column:last-of-type {width: 50%}

/* proper 2-column grid */

.columns-50 {
  display: grid;
  grid-template-columns: 50% auto;
  column-gap: 1rem;
}

.left-column {
  grid-column-start: 1;
}

.right-column {
  grid-column-start: 2;
}

/* svg related */
.svg-text {
  font-family: 'Fira Sans';
}
