/* Base */
/* ----------------------------------------------------------*/

* {
  margin: 0;
  padding: 0;
}

html,
body {
  height: 100%;
}

body {
  font-family: 'Roboto', Helvetica, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 300;
  background-color: #fdfdfd;
}

/* body {
  padding: 50px;
  max-width: 1800px;
  margin: 0 auto;
  line-height: 1.5;
} */


h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: 400;
}

a {
  color: #003a9c;
  text-decoration: none;
}

a:hover {
  color: #000;
  text-decoration: underline;
}

a:visited {
  color: #205caa;
}

/* Utility */
.wrap:before,
.wrap:after {
  content: "";
  display: table;
}

.wrap:after {
  clear: both;
}

.wrap {
  max-width: 900px;
  padding: 0 30px;
  margin: 0 auto;
  zoom: 1;
}

p.boxed {
  border: 1px solid blue;
  padding: 5px 3px 5px 8px;
}

.vertical-center {
  margin: 0;
  position: absolute;
  top: 50%;
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}



/* Layout Styles */
/* ----------------------------------------------------------*/

/* Site header */

.site-header {
  border-top: 5px solid #333;
  border-bottom: 1px solid #e8e8e8;
  min-height: 56px;
  background-color: white;
}

.site-title,
.site-title:hover,
.site-title:visited {
  display: block;
  color: #333;
  font-size: 26px;
  letter-spacing: -1px;
  float: left;
  line-height: 56px;
  position: relative;
  z-index: 1;
}

.site-nav {
  float: right;
  line-height: 56px;
}

.site-nav .menu-icon {
  display: none;
}

.site-nav .page-link {
  margin-left: 20px;
  color: #727272;
  letter-spacing: -.5px;
}

/* Site footer */

.site-footer {
  border-top: 1px solid #e8e8e8;
  padding: 30px 0;
}

.footer-heading {
  font-size: 18px;
  font-weight: 300;
  letter-spacing: -.5px;
  margin-bottom: 15px;
}

.site-footer .column {
  float: left;
  margin-bottom: 15px;
}

.footer-col-1 {
  width: 270px;
  /*fallback*/
  width: -webkit-calc(35% - 10px);
  width: -moz-calc(35% - 10px);
  width: -o-calc(35% - 10px);
  width: calc(35% - 10px);
  margin-right: 10px
}

.footer-col-2 {
  width: 175px;
  /*fallback*/
  width: -webkit-calc(23.125% - 10px);
  width: -moz-calc(23.125% - 10px);
  width: -o-calc(23.125% - 10px);
  width: calc(23.125% - 10px);
  margin-right: 10px
}

.footer-col-3 {
  width: 500px;
  /*fallback*/
  width: -webkit-calc(41.875%);
  width: -moz-calc(41.875%);
  width: -o-calc(41.875%);
  width: calc(41.875%);
}

.site-footer ul {
  list-style: none;
}

.site-footer li,
.site-footer p {
  font-size: 15px;
  letter-spacing: -.3px;
  color: #828282;
}

.github-icon-svg,
.twitter-icon-svg {
  display: inline-block;
  width: 16px;
  height: 16px;
  position: relative;
  top: 3px;
}

.copyright {
  display: block;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.sponsor {
  display: flex;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  justify-content: center;
}


/* Page Content styles */
/* ----------------------------------------------------------*/

.page-content {
  padding: 30px 0;
  background-color: #fff;
}


/* Home styles */
/* ----------------------------------------------------------*/

.home h1 {
  margin-bottom: 25px;
}

.posts {
  list-style-type: none;
}

.posts li {
  margin-bottom: 30px;
}

.posts .post-link {
  font-size: 24px;
  letter-spacing: -1px;
  line-height: 1;
}

.posts .post-date {
  display: block;
  font-size: 15px;
  color: #818181;
}


/* Post styles */
/* ----------------------------------------------------------*/

.post-header {
  margin: 10px 0 30px;
}

.post-header h1 {
  font-size: 42px;
  letter-spacing: -1.75px;
  line-height: 1;
  font-weight: 300;
}

.post-header .meta {
  font-size: 15px;
  color: #818181;
  margin-top: 5px;
}

.post-content {
  margin: 0 0 30px;
}

.post-content>* {
  margin: 20px 0;
}


.post-content h1,
.post-content h2,
.post-content h3,
.post-content h4,
.post-content h5,
.post-content h6 {
  line-height: 1;
  font-weight: 300;
  margin: 40px 0 20px;
}

.post-content h2 {
  font-size: 32px;
  letter-spacing: -1px;
}

.post-content h3 {
  font-size: 26px;
  letter-spacing: -1px;
}

.post-content h4 {
  font-size: 20px;
  letter-spacing: -1px;
}

.post-content blockquote {
  border-left: 4px solid #e8e8e8;
  padding-left: 20px;
  font-size: 18px;
  opacity: .6;
  letter-spacing: -1px;
  font-style: italic;
  margin: 30px 0;
}

.post-content ul,
.post-content ol {
  padding-left: 20px;
}

.post pre,
.post code {
  border: 1px solid #d5d5e9;
  background-color: #eef;
  padding: 8px 12px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  font-size: 15px;
}

.post code {
  padding: 1px 5px;
}

.post ul,
.post ol {
  margin-left: 1.35em;
}

.post pre code {
  border: none;
}

/* terminal */
.post pre.terminal {
  border: 1px solid #000;
  background-color: #333;
  color: #FFF;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}

.post pre.terminal code {
  background-color: #333;
}

/* Syntax highlighting styles */
/* ----------------------------------------------------------*/

.highlight {
  background: #ffffff;
}

.highlight .c {
  color: #999988;
  font-style: italic
}

/* Comment */
.highlight .err {
  color: #a61717;
  background-color: #e3d2d2
}

/* Error */
.highlight .k {
  font-weight: bold
}

/* Keyword */
.highlight .o {
  font-weight: bold
}

/* Operator */
.highlight .cm {
  color: #999988;
  font-style: italic
}

/* Comment.Multiline */
.highlight .cp {
  color: #999999;
  font-weight: bold
}

/* Comment.Preproc */
.highlight .c1 {
  color: #999988;
  font-style: italic
}

/* Comment.Single */
.highlight .cs {
  color: #999999;
  font-weight: bold;
  font-style: italic
}

/* Comment.Special */
.highlight .gd {
  color: #000000;
  background-color: #ffdddd
}

/* Generic.Deleted */
.highlight .gd .x {
  color: #000000;
  background-color: #ffaaaa
}

/* Generic.Deleted.Specific */
.highlight .ge {
  font-style: italic
}

/* Generic.Emph */
.highlight .gr {
  color: #aa0000
}

/* Generic.Error */
.highlight .gh {
  color: #999999
}

/* Generic.Heading */
.highlight .gi {
  color: #000000;
  background-color: #ddffdd
}

/* Generic.Inserted */
.highlight .gi .x {
  color: #000000;
  background-color: #aaffaa
}

/* Generic.Inserted.Specific */
.highlight .go {
  color: #888888
}

/* Generic.Output */
.highlight .gp {
  color: #555555
}

/* Generic.Prompt */
.highlight .gs {
  font-weight: bold
}

/* Generic.Strong */
.highlight .gu {
  color: #aaaaaa
}

/* Generic.Subheading */
.highlight .gt {
  color: #aa0000
}

/* Generic.Traceback */
.highlight .kc {
  font-weight: bold
}

/* Keyword.Constant */
.highlight .kd {
  font-weight: bold
}

/* Keyword.Declaration */
.highlight .kp {
  font-weight: bold
}

/* Keyword.Pseudo */
.highlight .kr {
  font-weight: bold
}

/* Keyword.Reserved */
.highlight .kt {
  color: #445588;
  font-weight: bold
}

/* Keyword.Type */
.highlight .m {
  color: #009999
}

/* Literal.Number */
.highlight .s {
  color: #d14
}

/* Literal.String */
.highlight .na {
  color: #008080
}

/* Name.Attribute */
.highlight .nb {
  color: #0086B3
}

/* Name.Builtin */
.highlight .nc {
  color: #445588;
  font-weight: bold
}

/* Name.Class */
.highlight .no {
  color: #008080
}

/* Name.Constant */
.highlight .ni {
  color: #800080
}

/* Name.Entity */
.highlight .ne {
  color: #990000;
  font-weight: bold
}

/* Name.Exception */
.highlight .nf {
  color: #990000;
  font-weight: bold
}

/* Name.Function */
.highlight .nn {
  color: #555555
}

/* Name.Namespace */
.highlight .nt {
  color: #000080
}

/* Name.Tag */
.highlight .nv {
  color: #008080
}

/* Name.Variable */
.highlight .ow {
  font-weight: bold
}

/* Operator.Word */
.highlight .w {
  color: #bbbbbb
}

/* Text.Whitespace */
.highlight .mf {
  color: #009999
}

/* Literal.Number.Float */
.highlight .mh {
  color: #009999
}

/* Literal.Number.Hex */
.highlight .mi {
  color: #009999
}

/* Literal.Number.Integer */
.highlight .mo {
  color: #009999
}

/* Literal.Number.Oct */
.highlight .sb {
  color: #d14
}

/* Literal.String.Backtick */
.highlight .sc {
  color: #d14
}

/* Literal.String.Char */
.highlight .sd {
  color: #d14
}

/* Literal.String.Doc */
.highlight .s2 {
  color: #d14
}

/* Literal.String.Double */
.highlight .se {
  color: #d14
}

/* Literal.String.Escape */
.highlight .sh {
  color: #d14
}

/* Literal.String.Heredoc */
.highlight .si {
  color: #d14
}

/* Literal.String.Interpol */
.highlight .sx {
  color: #d14
}

/* Literal.String.Other */
.highlight .sr {
  color: #009926
}

/* Literal.String.Regex */
.highlight .s1 {
  color: #d14
}

/* Literal.String.Single */
.highlight .ss {
  color: #990073
}

/* Literal.String.Symbol */
.highlight .bp {
  color: #999999
}

/* Name.Builtin.Pseudo */
.highlight .vc {
  color: #008080
}

/* Name.Variable.Class */
.highlight .vg {
  color: #008080
}

/* Name.Variable.Global */
.highlight .vi {
  color: #008080
}

/* Name.Variable.Instance */
.highlight .il {
  color: #009999
}

/* Literal.Number.Integer.Long */


/* media queries */
/* ----------------------------------------------------------*/


@media screen and (max-width: 750px) {

  .footer-col-1 {
    width: 50%;
  }

  .footer-col-2 {
    width: 45%;
    /*fallback*/
    width: -webkit-calc(50% - 10px);
    width: -moz-calc(50% - 10px);
    width: -o-calc(50% - 10px);
    width: calc(50% - 10px);
    margin-right: 0;
  }

  .site-footer .column.footer-col-3 {
    width: auto;
    float: none;
    clear: both;
  }

}

@media screen and (max-width: 600px) {

  .wrap {
    padding: 0 12px;
  }

  .site-nav {
    position: fixed;
    z-index: 10;
    top: 14px;
    right: 8px;
    background-color: white;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    border: 1px solid #e8e8e8;
  }

  .site-nav .menu-icon {
    display: block;
    font-size: 24px;
    color: #505050;
    float: right;
    width: 36px;
    text-align: center;
    line-height: 36px;
  }

  .site-nav .menu-icon svg {
    width: 18px;
    height: 16px;
  }

  .site-nav .trigger {
    clear: both;
    margin-bottom: 5px;
    display: none;
  }

  .site-nav:hover .trigger {
    display: block;
  }

  .site-nav .page-link {
    display: block;
    text-align: right;
    line-height: 1.25;
    padding: 5px 10px;
    margin: 0;
  }

  .post-header h1 {
    font-size: 36px;
  }

  .post-content h2 {
    font-size: 28px;
  }

  .post-content h3 {
    font-size: 22px;
  }

  .post-content h4 {
    font-size: 18px;
  }

  .post-content blockquote {
    padding-left: 10px;
  }

  .post-content ul,
  .post-content ol {
    padding-left: 10px;
  }

  .site-footer .column {
    float: none;
    clear: both;
    width: auto;
    margin: 0 0 15px;
  }

}

.logo {
  float: left;
  display: block;
  text-indent: -9999px;
  width: 250px;
  height: 48px;
  background: url(../resources/images/logo.png);
  background-size: 250px 48px;
}

.logosection {
  clear: both;
}

.conference-date {
  margin-top: 10px;
}

.buildsys {
  float: right;

}

.acm {
  display: block;
  text-indent: -9999px;
  width: 218px;
  height: 73px;
  background: url(../resources/images/acm.png);
  background-size: 218px 73px;
}

.banner {
  margin-left: auto;
  margin-right: auto;
  width: 900px;
  max-width: 100%;

}

.col2 {
  width: 370px;
  float: left;
  margin-right: 15px;
}

.clearcols {
  clear: both;
}

.paper {
  list-style-type: none;
  margin-left: 0;
  padding-left: 1em;
}

.paper li {
  margin-bottom: 20px;
  margin-left: 0;
}

.paper li:hover {
  background: #eeeeee;
}

.authors {
  font-style: italic;
  color: #444444;
}

.papertitle {
  font-weight: bold;
  color: #003a9c;
}

.highlight {
  font-weight: bold;
  color: #ff004f;
}

.programschedule {
  list-style-type: none;
  margin-left: 0;
  padding-left: 1em;
}

.programschedule li {
  margin-left: 0;
}

.programblock {
  clear: left;
  margin-bottom: 20px;
  margin-left: 0;
}

.programblock h2 {
  font-size: 14pt;
  margin: 0;
  margin-bottom: 10px;
  letter-spacing: 0px;

}

.programblock h3 {
  font-size: 12pt;
  margin: 0;
  margin-bottom: 10px;
  color: #003a9c;
}

.programblock h4 {
  font-size: 12pt;
  font-weight: bold;
  margin: 0;
  color: #3d3d47;
}

.dateitem {
  color: #333333;
  width: 100px;
  margin-right: 20px;
  float: left;
}

.programdesc {
  float: left;
  width: 600px;
}

.programdesc ul {
  list-style-type: none;
  margin-left: 0;
  padding-left: 0;
}

.programdesc li {
  margin-bottom: 10px;
}

.awardblock {
  clear: left;
  margin-bottom: 20px;
  margin-left: 0;
  border-bottom: 1px solid #eeeeee;

}


.awarditem {
  color: #333333;
  width: 100px;
  margin-right: 20px;
  float: left;
}

.awarddesc {
  float: left;
  width: 600px;
}

.keynotepic {

  float: left;
  margin-right: 15px;
  margin-bottom: 15px;

}

strong,
b {
  font-weight: bold;
}

/*************************
 * GRID SCHEDULE LAYOUT
 *************************/
 @media screen and (min-width:1000px) {
  .schedule {
    display: grid;
    grid-gap: 0.2em;
    grid-template-rows:
      [tracks] auto
      [time-0600] 0.25fr
      [time-0700] 0.5fr
      [time-0800] 0.25fr
      [time-0815] 0.25fr
      [time-0830] 0.25fr
      [time-0845] 0.25fr
      [time-0900] 0.25fr
      [time-0915] 0.25fr
      [time-0930] 0.25fr
      [time-0945] 0.25fr
      [time-1000] 0.25fr
      [time-1015] 0.25fr
      [time-1030] 0.25fr
      [time-1045] 0.25fr
      [time-1100] 0.25fr
      [time-1115] 0.25fr
      [time-1130] 0.25fr
      [time-1145] 0.25fr
      [time-1200] 0.25fr
      [time-1215] 0.25fr
      [time-1230] 0.25fr
      [time-1245] 0.25fr
      [time-1300] 0.25fr
      [time-1315] 0.25fr
      [time-1330] 0.25fr
      [time-1345] 0.25fr
      [time-1400] 0.25fr
      [time-1415] 0.25fr
      [time-1430] 0.25fr
      [time-1445] 0.25fr
      [time-1500] 0.25fr
      [time-1515] 0.25fr
      [time-1530] 0.25fr
      [time-1545] 0.25fr
      [time-1600] 0.25fr
      [time-1615] 0.25fr
      [time-1630] 0.5fr
      [time-1645] 0.25fr
      [time-1700] 0.25fr
      [time-1715] 0.25fr
      [time-1730] 0.25fr
      [time-1745] 0.25fr
      [time-1800] 0.25fr
      [time-1815] 0.25fr
      [time-1900] 0.5fr
      [time-2000] 0.5fr
      [time-2100] 0.5fr
      [time-2200] 0.5fr;
      /* Note 1:
      Use 24hr time for gridline names for simplicity

      Note 2: Use "auto" instead of "1fr" for a more compact schedule where height of a slot is not proportional to the session length. Implementing a "compact" shortcode attribute might make sense for this!
      Try 0.5fr for more compact equal rows. I don't quite understand how that works :)
      */
    
    grid-template-columns:
      /* [times] 4em */
      [track-1-start] 1fr
      [track-1-end track-2-start] 1fr
      [track-2-end track-3-start] 1fr
      [track-3-end track-4-start] 1fr
      [track-4-end track-5-start] 1fr
      [track-5-end track-6-start] 1fr
      [track-6-end];
  }
}

.time-slot {
  grid-column: times;
}

.session {
  margin-bottom:  1em;
}

@supports( display:grid ) {
  @media screen and (min-width: 1000px) {
    .session {
      margin: 0;
    } 
  }
}

/*************************
 * VISUAL STYLES
 * Design-y stuff ot particularly important to the demo
 *************************/
/* body {
  padding: 50px;
  max-width: 1800px;
  margin: 0 auto;
  line-height: 1.5;
} */

.session {
  padding: .5em;
  border-radius: 2px;
  font-size: 12px;
  display: flex; 
  justify-content: center; 
  align-content: center; 
  flex-direction: column;
  /* box-shadow:
    rgba(255,255,255,.6) 1px 1px 0,
    rgba(0,0,0,.3) 4px 4px 0; */
}

.session-title,
.session-time,
.session-track,
.session-presenter {  
  display: block;
  color:  #0d0c0d;
  text-align: center;
}

.session-title,
.time-slot {
  margin: 0;
  font-size: 1em;
}

.session-title a {
  color:  #0d0c0d;
  text-decoration-style: dotted;
  
  /* &:hover {
    font-style: italic;
  }
  
  &:focus {
    outline: 2px dotted rgba(255,255,255,.8);
  } */
}

.track-slot,
.time-slot {
  font-weight: bold;
  font-size:1.1em;
  display: block;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.track-1 {
  background-color: #D69691;
  color: #fff;
}

.track-2 {
  background-color: #D0DEFC;
  color: #fff;
}

.track-3 {
  background-color: #D0DEFC;
  color: #fff;
}

.track-4 {
  background-color: #D0DEFC;
  color: #fff;
}

.track-5 {
  background-color:  #EBCB9D;
  color: #fff;
}

.track-6 {
  background-color:  #EBCB9D;
  color: #fff;
}

.track-all {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #ccc;
  color: #000;
  box-shadow: none;
}

.text {
  max-width: 750px;
  font-size: 18px;
  margin: 0 auto 50px;
}

.meta {
  color: #555;
  font-style: italic;
}

.meta a {
  color: #555;
}

hr {
  margin: 40px 0;
}