html, body {
    height: 100%;
}

body {
    display: flex;
    flex-direction: column;
}

.content {
    flex: 1 0 auto;
}

.footer {
    flex-shrink: 0;
}

.lato {
    font-family: 'Lato', sans-serif;
}

.bg-mockup-blue {
    background-color: #316999;
}

.mockup-blue {
    color: #316999;
}

.mockup-red {
    color: #DB4237;
}

.turn-white {
    fill: white;
}

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

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

.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    text-align: left;
    font-size: .875rem;
    display: block;
}

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

.dropdown:hover .dropdown-content {
    display: block;
}

.menu {
    margin-top: 16px;
    margin-bottom: 16px;
}

@media only screen and (min-width: 515px) {
    main { 
        padding-bottom: 68px;
    }
  }

@media only screen and (min-width: 371px) and (max-width: 514px) {
    main { 
        padding-bottom: 111px;
    }
  }

  @media only screen and (min-width:335px) and (max-width: 370px) {
    main { 
        padding-bottom: 99px;
    }
  }
  @media only screen and (max-width: 334px) {
    main { 
        padding-bottom: 143px;
    }
  }

.organizers {
    display: grid;
    justify-items: stretch;
    align-items: stretch;
    grid-gap: 20px;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
}

.offer {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 30px;
    align-items: center;
}

.offer-btn {
    justify-self: end;
}

.agenda {
      text-align: center;
      vertical-align: top;
      border-collapse: collapse;
      max-width: 100%;
      cursor: default;
}

.agenda td, .agenda th {
      border: 1px solid #ddd;
      padding: 5px;
}

.agenda .rooms {
      margin-bottom: 5px;
}

.agenda td.active {
      background-color: #f5f5f5;
}

.agenda td.special {
      vertical-align: middle;
      background-color:#DAE5FF;
}

.agenda .square {
      width: 10px;
      height: 10px;
      display: inline-block;
      border: 1px solid rgba(0, 0,0, .2);
}

.agenda .red  {
      background-color: #ff2525;
}

.agenda .blue  {
      background-color: #0088ff;
}

.agenda .yellow  {
      background-color: #f8ff2d;
}

.agenda .purple {
      background-color: #800080;
}

.agenda .green {
      background-color: #008000;
}

.agenda .talk {
      cursor: pointer;
}

.agenda .talk > .speaker {
      font-style: italic;
}

.agenda .talk > .keynote {
      font-weight: 700;
}
.agenda .separator {
      border: none;
      padding: 2px;
      background-color: #384452;
      height: 3px;
}
.agenda td.talk.workshops {
      background-color: #d1eace;
}

@media (max-width: 650px) {
      .agenda td {
        padding: 1px !important;
      }
}

.tippy-tooltip.pycon-theme {
      background-color: #fff;
      border: 1px solid rgba(0, 0, 0, .2);
      border-radius: 6px;
      padding: 9px 14px;
      max-width: 400px;
      white-space: normal;
      text-align: start;
      -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, .2);
              box-shadow: 0 5px 10px rgba(0, 0, 0, .2);
}

.tippy-tooltip.pycon-theme.leave {
      opacity: 0;
}

