@charset "UTF-8";
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

*, *:before, *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

input[type='email'], input[type='text'] {
  font-family: "Lora", sans-serif;
  font-size: 1em;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: #fff;
  background-image: none;
  border: .05rem solid #bcc3ce;
  border-radius: .2rem;
  color: #333;
  display: block;
  max-width: 100%;
  outline: 0;
  padding: 0.5em;
  width: 100%;
}

input[type='submit'], button, .button {
  cursor: pointer;
  background-color: white;
  border: 1px solid #333;
  border-radius: .2rem;
  font-size: 1em;
  padding: 0.5em;
  text-decoration: none;
}

input[type='submit']:hover, input[type='submit']:focus, .button:hover, .button:focus, button:hover, button:focus {
  border: 1px solid #FB6970;
}

label {
  display: block;
  line-height: 1.2rem;
  padding: .3rem 0;
  margin-bottom: 0.5em;
}

.form-group {
  margin-bottom: 2em;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown .show {
  display: block;
}

.dropdown-content {
  text-align: left;
  display: none;
  position: absolute;
  background-color: white;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content a {
  font-style: normal;
  padding: 12px 16px;
  display: block;
}

.dropdown-content a:hover {
  background-color: #F8F8F8;
}

/**************/
/* BASE RULES */
/**************/
html {
  font-size: 100%;
}

body {
  background: #fff;
  font: 18px/1.4 "Lora", sans-serif;
  color: #333;
  min-height: 100%;
  position: relative;
}

hr, section::after, article h6::after {
  margin-left: auto !important;
  margin-right: auto !important;
  margin-top: 1.6rem;
  margin-bottom: 1.6rem;
  height: 1.6rem;
  color: #222;
  text-align: center;
  display: block;
  border: 0;
}

hr:before, section::after, article h6::after {
  content: "···";
  letter-spacing: 1em;
}

sup {
  vertical-align: super;
  font-size: smaller;
}

.container {
  margin: 0 auto;
  max-width: 740px;
  padding: 15px;
  width: 100%;
}

h1, h2 {
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
}

h1, h2, h3, h4, h5, h6 {
  color: #333;
  font-weight: 700;
  line-height: 1.7em;
  margin-top: 2em;
  margin-bottom: 0.5em;
}

@media screen and (max-width: 640px) {
  h1, h2 {
    margin-top: 0 !important;
  }
}

footer {
  text-align: center;
}

.footnotes {
  font-size: 0.7em;
}

.hide-mobile {
  display: block;
}
@media screen and (max-width: 640px) {
  .hide-mobile {
    display: none;
  }
}

.show-mobile {
  display: none !important;
}
@media screen and (max-width: 640px) {
  .show-mobile {
    display: block !important;
  }
}

h1 {
  text-align: center;
  margin-top: 1.5em;
  font-size: 2em;
}
@media screen and (max-width: 640px) {
  h1 {
    font-size: 1.5em;
  }
}
h1 a {
  color: inherit;
  text-decoration: none;
}

h2 {
  font-size: 1.7em;
}

p {
  line-height: 1.7em;
  margin-bottom: 1.7em;
}

sup {
  font-size: 0.7em;
}

a {
  color: #333;
  cursor: pointer;
}
a:hover, a:active {
  color: #FB6970;
}

ul, ol {
  line-height: 1.7em;
  margin-bottom: 1.7em;
  padding-left: 30px;
}

ul {
  list-style-type: disc;
}

ol {
  list-style-type: decimal;
}

ol ul, ul ol, ul ul, ol ol {
  margin: 0;
}

ul ul, ol ul {
  list-style-type: circle;
}

li {
  line-height: 1.7em;
}

em, i {
  font-style: italic;
}

strong, b {
  font-weight: bold;
}

figure {
  text-align: center;
}

.centered {
  text-align: center;
}

img {
  max-width: 100%;
}

h6, figcaption {
  font-size: 0.8em;
  text-align: center;
  font-style: italic;
  margin-top: 2em;
  margin-bottom: 2em;
}

br {
  clear: both;
}

table td, table th {
  padding: 5px;
}

table td {
  border-top: 1px solid #E8E8E8;
}

table th {
  font-weight: bold;
}

.gmnoprint img {
  max-width: none;
}

.date {
  font-style: italic;
  color: #666;
}

::-moz-selection {
  color: #000;
  background: #eee;
}

::selection {
  color: #000;
  background: #eee;
}

.clearfix:before,
.clearfix:after {
  content: " ";
  display: table;
}

.clearfix:after {
  clear: both;
}

/*********************/
/* LAYOUT / SECTIONS */
/*********************/
header .external-links a {
  margin-right: 0.5em;
}
header .container {
  text-align: center;
}
header h1, header h2, header h3, header h4, header h5, header h6 {
  font-weight: normal;
  margin: 0;
}
header nav, header nav a {
  color: #333;
}
@media screen and (max-width: 640px) {
  header h2 {
    font-size: 1em;
  }
  header h3 {
    display: none;
  }
}

.site-avatar {
  margin: 0 auto;
}

.site-avatar img {
  width: 80px;
  height: 80px;
  margin-right: 15px;
  border-radius: 100%;
}

.site-info {
  float: left;
}
@media screen and (max-width: 640px) {
  .site-info {
    float: none;
    display: block;
    margin: 0 auto;
  }
}

.site-name {
  margin: 0;
  color: #333;
  cursor: pointer;
  font-family: "Lora", sans-serif;
  font-weight: 300;
  font-size: 28px;
  letter-spacing: 1px;
}

.site-description {
  margin: -5px 0 0 0;
  color: #666;
  font-size: 16px;
}
@media screen and (max-width: 640px) {
  .site-description {
    margin: 3px 0;
  }
}

.fa-heart {
  color: #DC143C;
}

.fa-star {
  color: #ffd700;
}

.videoWrapper {
  position: relative;
  padding-bottom: 56.25%;
  /* 16:9 */
  padding-top: 25px;
  height: 0;
}
.videoWrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

nav {
  margin-top: 1.5em;
}
@media screen and (max-width: 640px) {
  nav {
    margin-top: 0.5em;
  }
}
nav a {
  margin-left: 1em;
  font-weight: 600;
}
nav a:first-child {
  margin-left: 0;
}

.share i {
  font-size: 2em;
}

.commentCount {
  text-transform: lowercase;
}

.posts > .post {
  padding-bottom: 2em;
}

.posts > .post:last-child {
  padding-bottom: 1em;
  border-bottom: none;
}

.post .entry > p {
  color: #333;
  font-weight: 400;
  text-align: justify;
}

.post blockquote {
  margin-top: 2.5em;
  margin-bottom: 2.5em;
  padding-left: 1em;
  padding-top: 1.5em;
  padding-bottom: 1.5em;
  font-style: italic;
  border-left: 2px solid #FB6970;
}
.post blockquote p {
  font-size: 1.5em;
  margin: 0;
}
.post .comments {
  margin-top: 10px;
}
.post .read-more {
  text-decoration: none;
  text-transform: uppercase;
  font-size: 15px;
}

.what-to-expect img[alt=Speaker] {
  width: 68px;
  float: left;
  margin-right: 1em;
}
.what-to-expect img[alt=Sponsor] {
  height: 60px;
  max-width: 100%;
  margin-right: 1em;
}

.confs-list tr td, .confs-list tr td a {
  color: #878686 !important;
}
.confs-list tr td strong a, .confs-list tr td strong {
  color: black !important;
}

.confs h2:not(:first-of-type), .confs h2:not(:first-of-type) ~ p {
  color: #585858 !important;
}
.confs h2:first-of-type + p + p a.button {
  cursor: pointer;
  color: white;
  background-color: #00A86B !important;
  border: 1px solid #039c64;
  border-radius: .2rem;
  font-size: 1em;
  padding: 0.5em;
  text-decoration: none;
}
.confs h2:first-of-type + p + p a.button:hover, .confs h2:first-of-type + p + p a.button:focus {
  border: 1px solid black;
  color: black;
}
.confs h2:first-of-type::after {
  content: " (🏅 TOP 3 IN EUROPE)";
}
.confs h2 + p strong:nth-child(n+2)::before {
  content: " · ";
}
.confs img[alt=Conference], .confs img[alt=Unconference] {
  width: 200px;
  float: left;
  margin-right: 1em;
}
.confs img[alt=Unconference] {
  filter: grayscale(90%);
  opacity: 0.8;
}
.confs img[alt=Conference] {
  transition: all .2s ease-in-out;
}
.confs img[alt=Conference]:hover {
  cursor: pointer;
  transform: scale(1.05);
}
.confs .button-emph, .confs .button {
  display: inline-block;
  margin-top: 1em;
}

.highlight {
  background-color: #efefef;
  padding: 7px 7px 7px 10px;
  border: 1px solid #ddd;
  -moz-box-shadow: 3px 3px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 3px 3px rgba(0, 0, 0, 0.1);
  box-shadow: 3px 3px rgba(0, 0, 0, 0.1);
  margin: 20px 0 20px 0;
  overflow: scroll;
}

code {
  font-family: 'Bitstream Vera Sans Mono','Courier', monospace;
}

.highlight .c {
  color: #586E75;
}

/* Comment */
.highlight .err {
  color: #93A1A1;
}

/* Error */
.highlight .g {
  color: #93A1A1;
}

/* Generic */
.highlight .k {
  color: #859900;
}

/* Keyword */
.highlight .l {
  color: #93A1A1;
}

/* Literal */
.highlight .n {
  color: #93A1A1;
}

/* Name */
.highlight .o {
  color: #859900;
}

/* Operator */
.highlight .x {
  color: #CB4B16;
}

/* Other */
.highlight .p {
  color: #93A1A1;
}

/* Punctuation */
.highlight .cm {
  color: #586E75;
}

/* Comment.Multiline */
.highlight .cp {
  color: #859900;
}

/* Comment.Preproc */
.highlight .c1 {
  color: #586E75;
}

/* Comment.Single */
.highlight .cs {
  color: #859900;
}

/* Comment.Special */
.highlight .gd {
  color: #2AA198;
}

/* Generic.Deleted */
.highlight .ge {
  color: #93A1A1;
  font-style: italic;
}

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

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

/* Generic.Heading */
.highlight .gi {
  color: #859900;
}

/* Generic.Inserted */
.highlight .go {
  color: #93A1A1;
}

/* Generic.Output */
.highlight .gp {
  color: #93A1A1;
}

/* Generic.Prompt */
.highlight .gs {
  color: #93A1A1;
  font-weight: bold;
}

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

/* Generic.Subheading */
.highlight .gt {
  color: #93A1A1;
}

/* Generic.Traceback */
.highlight .kc {
  color: #CB4B16;
}

/* Keyword.Constant */
.highlight .kd {
  color: #268BD2;
}

/* Keyword.Declaration */
.highlight .kn {
  color: #859900;
}

/* Keyword.Namespace */
.highlight .kp {
  color: #859900;
}

/* Keyword.Pseudo */
.highlight .kr {
  color: #268BD2;
}

/* Keyword.Reserved */
.highlight .kt {
  color: #DC322F;
}

/* Keyword.Type */
.highlight .ld {
  color: #93A1A1;
}

/* Literal.Date */
.highlight .m {
  color: #2AA198;
}

/* Literal.Number */
.highlight .s {
  color: #2AA198;
}

/* Literal.String */
.highlight .na {
  color: #93A1A1;
}

/* Name.Attribute */
.highlight .nb {
  color: #B58900;
}

/* Name.Builtin */
.highlight .nc {
  color: #268BD2;
}

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

/* Name.Constant */
.highlight .nd {
  color: #268BD2;
}

/* Name.Decorator */
.highlight .ni {
  color: #CB4B16;
}

/* Name.Entity */
.highlight .ne {
  color: #CB4B16;
}

/* Name.Exception */
.highlight .nf {
  color: #268BD2;
}

/* Name.Function */
.highlight .nl {
  color: #93A1A1;
}

/* Name.Label */
.highlight .nn {
  color: #93A1A1;
}

/* Name.Namespace */
.highlight .nx {
  color: #555;
}

/* Name.Other */
.highlight .py {
  color: #93A1A1;
}

/* Name.Property */
.highlight .nt {
  color: #268BD2;
}

/* Name.Tag */
.highlight .nv {
  color: #268BD2;
}

/* Name.Variable */
.highlight .ow {
  color: #859900;
}

/* Operator.Word */
.highlight .w {
  color: #93A1A1;
}

/* Text.Whitespace */
.highlight .mf {
  color: #2AA198;
}

/* Literal.Number.Float */
.highlight .mh {
  color: #2AA198;
}

/* Literal.Number.Hex */
.highlight .mi {
  color: #2AA198;
}

/* Literal.Number.Integer */
.highlight .mo {
  color: #2AA198;
}

/* Literal.Number.Oct */
.highlight .sb {
  color: #586E75;
}

/* Literal.String.Backtick */
.highlight .sc {
  color: #2AA198;
}

/* Literal.String.Char */
.highlight .sd {
  color: #93A1A1;
}

/* Literal.String.Doc */
.highlight .s2 {
  color: #2AA198;
}

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

/* Literal.String.Escape */
.highlight .sh {
  color: #93A1A1;
}

/* Literal.String.Heredoc */
.highlight .si {
  color: #2AA198;
}

/* Literal.String.Interpol */
.highlight .sx {
  color: #2AA198;
}

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

/* Literal.String.Regex */
.highlight .s1 {
  color: #2AA198;
}

/* Literal.String.Single */
.highlight .ss {
  color: #2AA198;
}

/* Literal.String.Symbol */
.highlight .bp {
  color: #268BD2;
}

/* Name.Builtin.Pseudo */
.highlight .vc {
  color: #268BD2;
}

/* Name.Variable.Class */
.highlight .vg {
  color: #268BD2;
}

/* Name.Variable.Global */
.highlight .vi {
  color: #268BD2;
}

/* Name.Variable.Instance */
.highlight .il {
  color: #2AA198;
}

/* Literal.Number.Integer.Long */
