/**
 * Papago theme for reveal.js.
 *
 * By Lucy Park <lucy.park@navercorp.com>
 */

@import url(../../lib/font/source-sans-pro/source-sans-pro.css);
section.has-dark-background, section.has-dark-background h1, section.has-dark-background h2, section.has-dark-background h3, section.has-dark-background h4, section.has-dark-background h5, section.has-dark-background h6 {
  color: #fff; }

/*********************************************
 * GLOBAL STYLES
 *********************************************/
body {
  background: white;
  background-color: white;
}

.reveal {
  font-family: "Source Sans Pro", Helvetica, sans-serif;
  font-size: 23px;
  font-weight: normal;
  color: #222;
}

.reveal .slides {
  background-color: white;
  text-align: left;
}

.reveal .slides > section {
  line-height: 1.3;
  font-weight: inherit;
  padding: 5%;
}

.reveal .slides > section > section {
  left: 0;
  padding: 5%;
}

/*********************************************
 * HEADERS
 *********************************************/
.reveal h1,
.reveal h2,
.reveal h3,
.reveal h4,
.reveal h5,
.reveal h6 {
  margin: 0 0 20px 0;
  color: #222;
  font-family: "Source Sans Pro", Helvetica, sans-serif;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: normal;
  text-shadow: none;
  word-wrap: break-word;
}

.reveal h1 {
  color: deepskyblue;
  font-size: 3em;
  padding-top: 50px;
}

.reveal h2 {
  border-bottom: 1px solid lightgray;
  color: deepskyblue;
  font-size: 1.6em;
  padding-bottom: 10px;
}

.reveal h3 {
  font-size: 1.3em;
}

.reveal h4 {
  font-size: 1em;
}

/*********************************************
 * OTHER
 *********************************************/
.reveal p {
  margin: 20px 0;
  line-height: 1.3;
}

/* Ensure certain elements are never larger than the slide itself */
.reveal img,
.reveal video,
.reveal iframe {
  max-width: 95%;
  max-height: 95%;
}

.reveal strong,
.reveal b {
  font-weight: bold;
}

.reveal em {
  color: red;
}

.reveal ol,
.reveal dl,
.reveal ul {
  display: inline-block;
  text-align: left;
  margin: 0 0 0 1em;
}

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

.reveal ul {
  list-style-type: disc;
}

.reveal ul ul {
  list-style-type: square;
}

.reveal ul ul ul {
  list-style-type: circle;
}

.reveal ul ul,
.reveal ul ol,
.reveal ol ol,
.reveal ol ul {
  display: block;
  margin-left: 40px;
}

.reveal ul.nobullet,
.reveal ol.nobullet {
  list-style-type: none;
  margin: 0;
}

.reveal dt {
  font-weight: bold;
}

.reveal dd {
  margin-left: 40px;
}

.reveal q,
.reveal blockquote {
  quotes: none;
}

.reveal blockquote {
  border-left: 10px solid whitesmoke;
  color: gray;
  display: block;
  position: relative;
  margin: 20px auto;
  padding-left: 20px;
}

.reveal blockquote p:first-child,
.reveal blockquote p:last-child {
  display: inline-block;
}

.reveal q {
  font-style: italic;
}

.reveal pre {
  max-width: 100%;
  margin: 20px 0;
  text-align: left;
  font-family: monospace;
  line-height: 1em;
  word-wrap: break-word;
}

.reveal code {
  font-family: monospace;
  font-size: 0.75em;
  padding: 5px;
}

.reveal pre code {
  display: block;
  overflow: auto;
  max-height: 400px;
  padding: 20px;
  word-wrap: normal;
}

.reveal table {
    margin-bottom: 50px;
}

.reveal table th {
  font-weight: bold;
}

.reveal table th,
.reveal table td {
  text-align: left;
  padding: 0.2em 0.5em 0.2em 0.5em;
  border-bottom: 1px solid lightgray;
}

.reveal table th[align="center"],
.reveal table td[align="center"] {
  text-align: center;
}

.reveal table th[align="right"],
.reveal table td[align="right"] {
  text-align: right;
}

.reveal table tbody tr:last-child th,
.reveal table tbody tr:last-child td {
  border-bottom: none;
}

.reveal sup {
  font-size: small;
  vertical-align: super;
}

.reveal sub {
  vertical-align: sub;
}

.reveal small {
  display: inline-block;
  font-size: 0.6em;
  line-height: 1.2em;
  vertical-align: top;
}

.reveal small * {
  vertical-align: top;
}

/*********************************************
 * IMAGES
 *********************************************/
.reveal section figure {
  text-align: center;
}

.reveal section figure img {
  margin: 15px 0;
}

.reveal section figure figcaption {
  color: gray;
  font-size: 80%;
}

.reveal a img {
  -webkit-transition: all .15s linear;
  -moz-transition: all .15s linear;
  transition: all .15s linear;
}

.reveal a:hover img {
  background: rgba(255, 255, 255, 0.2);
  border-color: #2a76dd;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.55);
}

/*********************************************
 * PROGRESS BAR
 *********************************************/
.reveal .progress {
  background: rgba(0, 0, 0, 0.2);
}

.reveal .progress span {
  background: deepskyblue;
  -webkit-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);
  -moz-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);
  transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);
}


/*********************************************
 * OVERVIEW
 *********************************************/
.reveal.overview .backgrounds {
  opacity: 0;
}

.reveal.overview section {
  background: white;
}

/*********************************************
 * CUSTOM
 *********************************************/
.reveal #meta {
  font-size: 90%;
  line-height: 1.5em;
}

.reveal footer #logo {
  height: 1rem !important;
}

.reveal .level1 > h1 {
  display: none;
}

.reveal .section-title {
 color: deepskyblue;
 font-size: 2em;
 font-weight: bold;
 padding-top: 250px;
}

.reveal .footnotes ol p {
    margin: 0;
}
