@import url('https://fonts.googleapis.com/css?family=Roboto:300,400,400i,500,700&subset=latin-ext');

* {
    font-family: 'Roboto', sans-serif;
}

html {
    height: 100%;
    min-height: 100%;
}

body {
    min-height: 100%;
    font-family: 'Roboto', sans-serif;
    color: #0E1319;
    color: rgba(15, 19, 25, .87);
    background: white;
    font-size: 16px;
    position: relative;
}

html.fixed,
body.fixed {
    position: fixed;
    width: 100%;
    height: 100%;
}

input,
button,
select,
textarea {
    outline: none !important;
}

h1,
h2,
h3,
h4,
h5 {
    color: #0E1319;
    color: rgba(15, 19, 25, .87);
    margin: 0;
    padding: 0;
    line-height: normal;
}

h1.center,
h2.center,
h3.center,
h4.center,
h5.center {
    margin: 0 auto;
    max-width: 840px;
}

h1 {
    font-size: 32px;
    font-weight: normal;
}

h2 {
    font-size: 20px;
    font-weight: normal;
}

h5 {
    font-size: 15px;
    font-weight: normal;
}

a,
a:focus,
a:active {
    color: inherit;
    text-decoration: underline;
}

a:hover {
    color: #0E1319;
    color: rgba(15, 19, 25, 1);
    text-decoration: none;
}

a,
button {
    cursor: pointer;
    -webkit-transition: all .2s ease-in-out;
       -moz-transition: all .2s ease-in-out;
         -o-transition: all .2s ease-in-out;
        -ms-transition: all .2s ease-in-out;
}

.btn-main {
    font-size: 20px;
    color: rgba(15, 19, 25, .87);
    background: #FEC007;
    border-radius: 50px;
    padding: 15px 35px;
    text-transform: uppercase;
}

.btn-main:active {
    box-shadow: inset 0 0 8px 5px rgba(0,0,0,.34);
}

ul li,
ol li {
    line-height: 1.4em;
}

ul.no-bullets,
ol.no-bullets {
    margin: 12px 0;
    padding: 0;
    list-style-type: none;
}

.no-bullets > li {
    list-style-type: none;
    margin-bottom: 18px;
}

.no-bullets > li:last-child {
    margin-bottom: 0;
}

.icon {
    width: 32px;
    height: 32px;
    display: inline-block;
    vertical-align: middle;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: auto 32px;
}

.icon-l {
    width: 64px;
    height: 64px;
    background-size: auto 64px;
}

.icon-calendar {
    background-image: url(../img/icon-calendar.png);
}

.icon-facebook {
    background-image: url(../img/icon-facebook.png);
}

.icon-twitter {
    background-image: url(../img/icon-twitter.png);
}

.icon-lanyard {
    background-image: url(../img/icon-lanyard.png);
}

.icon-award {
    background-image: url(../img/icon-award.png);
}

.icon-mic {
    background-image: url(../img/icon-mic.png);
}

.icon-trophy {
    background-image: url(../img/icon-trophy.png);
}

.icon-twitter {
    background-image: url(../img/icon-twitter.png);
    background-size: 32px auto;
}

/* Navigation */
#nav {
    background: rgba(15, 19, 25, .96);
    min-height: 91px;
    border: 0;
    box-shadow: 0 2px 3px 1px rgba(0,0,0,.12);
    -webkit-transition: background .2s ease-in-out;
    -moz-transition: background .2s ease-in-out;
    -o-transition: background .2s ease-in-out;
    -ms-transition: background .2s ease-in-out;
}

#nav-logo {
    height: 46px;
    margin-right: 20px;
    -webkit-transition: background .2s ease-in-out;
    -moz-transition: background .2s ease-in-out;
    -o-transition: background .2s ease-in-out;
    -ms-transition: background .2s ease-in-out;
}

#nav .navbar-brand .logo-text {
    display: inline-block;
    margin-top: 2px;
    font-size: 12px;
    width: 225px;
    padding: 6px 0 6px 20px;
    border-left: 1px solid rgba(255,255,255,.075);
    vertical-align: middle;
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
}

#nav .pull-right {
    margin-top: 20px;
}

#nav .pull-right a {
    color: rgba(255,255,255,.8);
    font-weight: 300;
    display: inline-block;
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 14px;
    border-radius: 4px;
    margin-right: 12px;
}

#nav .pull-right a:hover {
    color: white;
    color: rgba(255,255,255,1);
    background-color: rgba(255,255,255,.08);
}

#nav .pull-right .active > a {
    background-color: rgba(255,255,255,.16);
    text-decoration: none;
    font-weight: normal;
    cursor: default;
}

#nav[data-is-top] {
    background: transparent;
    box-shadow: none;
}

#nav[data-is-top] #nav-logo {
    filter: brightness(600%);
    opacity: .35;
}

/* Register form */
#register {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 2000;
    background: white;
    display:none;
    overflow: auto;
}

#register .close {
    position: absolute;
    top: 20px;
    right: 35px;
    font-size: 60px;
    font-weight: 300;
}

#register .close > span {
    font-size: 13px;
    margin: -8px 0 0 0;
    display: block;
}

#register .register-inner {
    max-width: 550px;
    padding: 50px 0;
    margin: 0 auto;
}

#register form {
    margin-top: 50px;
}

#register .form-group {
    margin-bottom: 40px;
}

#register label {
    font-size: 14px;
    text-transform: uppercase;
    color: rgba(15, 19, 25, .35);
    font-weight: 500;
    margin: 0
}

#register .form-group input,
#register .form-group select {
    border: 0;
    color: #0E1319;
    color: rgba(15, 19, 25, .87);
    border-bottom: 1px solid #0E1319;
    border-bottom: 1px solid rgba(15, 19, 25, .35);
    border-radius: 0;
    -webkit-appearance: none;
    font-size: 24px;
    padding: 0;
    height: 50px;
    background: transparent;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}

#register .form-group .fieldError {
    color: #EC4A39;
    padding: 6px 0 0 0;
    font-size: 13px;
    font-weight: normal;
    display: none;
}

#register .form-group.error label {
    color: #EC4A39;
}

#register .form-group.error input,
#register .form-group.error select {
    border-color: #EC4A39;
}

#register .form-group.error .fieldError {
    display: block;
}

#register .form-group input:focus,
#register .form-group select:focus {
    border-color: #FEC007;
}


#register-success-container {
    padding-top: 60px;
}

/* Sections */
.section {
    width: 100%;
    padding: 70px 30px;
}

.section-small {
    padding: 50px 30px;
}

.section-dark {
    background-color: #1B232F;
}

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

.section .icon-col,
.section .text-col {
    float: left;
}

.section .text-col {
    padding: 12px 0 0 30px;
    width: 80%;
}

.row {
    margin: 0
}

#top {
    background-image: url(../img/header-back.jpg);
    background-position: top left;
    background-repeat: no-repeat;
    background-size: cover;
    padding-bottom: 70px;
}

#top h1 {
    margin-top: 60px;
    margin-bottom: 60px;
}

#top #spot-booked {
    display: none;
}

#top .btn-main {
    margin: 30px auto;
    font-size: 24px;
    padding: 18px 45px;
}

#top .btn-main:hover {
    box-shadow: 0 0 20px 4px rgba(254,192,7,.2);
}

#awards .container > div.award1,
#awards .container > div.award2,
#awards .container > div.award3 { margin-top: 20px; }

#awards .container > div.award1 { text-align: right; }
#awards .container > div.award2 { text-align: center; }
#awards .container > div.award3 { text-align: left; }

#awards img {
    max-width: 130px;
}

ul.timeline,
ul.timeline > li {
    position: relative;
}

ul.timeline:before {
    content: '';
    position: absolute;
    top: -12px;
    bottom: 65px;
    left: -62px;
    width: 1px;
    background-color: #FEC007;
}

ul.timeline li:before {
    position: absolute;
    top: 2px;
    left: -76px;
    background: #1B232F;
    border: 1px solid #FEC007;
    color: #FEC007;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50%;
    padding: 0;
    width: 28px;
    height: 28px;
    text-align: center;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

ul.timeline li.one:before     { content: '1'; }
ul.timeline li.two:before     { content: '2'; }
ul.timeline li.three:before   { content: '3'; }
ul.timeline li.four:before    { content: '4'; }

ul.timeline li {
    font-size: 20px;
}

ul.timeline li > span {
    font-size: 14px;
}

div#timeline .trophy {
    min-height: 320px;
    background: url(../img/trophy.png) no-repeat center center;
    background-size: 100% auto;
}

#photos .italic > span {
    display: inline-block;
}

#photos .photos > div.img-holder {
    width: 33.3%;
    float: left;
}

#photos .photos > div.img-holder > img {
    width: 100%;
    height: auto;
    border-bottom: 3px solid #1B232F;
}

#photos .photos > div.img-holder > img.img1 { border-right: 2px solid #1B232F; }
#photos .photos > div.img-holder > img.img2 { border-left: 1px solid #1B232F; border-right: 1px solid #1B232F; }
#photos .photos > div.img-holder > img.img3 { border-left: 2px solid #1B232F; }

#judges h1 {
    margin-bottom: 45px;
}

#judges .row > div {
    text-align: center;
}

#judges .row img {
    margin: 0 0 20px 0
}

#judges .row h2 {
    font-weight:bold;
}

#speakers h1 {
    margin-bottom: 45px;
}

#speakers .row > div {
    text-align: center;
}

#speakers .row img {
    margin: 50px 0 20px 0;
}

#speakers .row h2 {
    font-weight:bold;
}

#speakers span {
    font-size: 13px;
}

.day-agenda-title {
    padding: 20px 0;
}

.day-agenda-title .inline {
    vertical-align: middle;
    line-height: .9em;
    height: 56px;
}

.day-agenda-title .caption {
    font-size: 16px;
}

.day-agenda-title .icon {
    margin-right: 12px;
}

.day-agenda {
    position: relative;
}

.day-agenda > div {
    padding: 35px 25px;
    position: relative;
    text-align: center;
}

.day-agenda > div:nth-child(odd){
    background-color: rgba(15, 19, 25, .025);
}

.day-agenda > div:nth-child(even){
    background-color: rgba(15, 19, 25, .05);
}

.day-agenda .agenda-inner {
    width: 500px;
    max-width: 100%;
    display: inline-block;
    position: relative;
    text-align: left;
}

.day-agenda .agenda-inner:before {
    position: absolute;
    top:-3px;
    left: -58px;
    background: #FEC007;
    color: black;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50%;
    padding: 7px 0 0 0;
    width: 35px;
    height: 35px;
    text-align: center;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.day-agenda .one .agenda-inner:before     { content: '1'; }
.day-agenda .two .agenda-inner:before     { content: '2'; }
.day-agenda .three .agenda-inner:before   { content: '3'; }
.day-agenda .four .agenda-inner:before    { content: '4'; }
.day-agenda .five .agenda-inner:before    { content: '5'; }
.day-agenda .six .agenda-inner:before     { content: '6'; }
.day-agenda .seven .agenda-inner:before   { content: '7'; }
.day-agenda .eight .agenda-inner:before   { content: '8'; }

.day-agenda .agenda-inner h2 {
    margin-bottom: 5px;
}

.day-agenda .agenda-inner span {
    font-size: 13px;
}

.day-agenda .agenda-inner p {
    padding: 10px 0 5px;
}

.day-agenda .agenda-inner span.time {
	font-size: 16px;
}

.day-agenda .agenda-inner .indented {
	padding-left: 112px;
}

.day-agenda .agenda-inner img {
    max-width: 500px;
    margin: 20px 0 30px;
}

#finalists {
    background-color: rgba(15, 19, 25, .025);
}

#finalists .inner {
    max-width: 1500px;
    margin: 0 auto;
}

#finalists .team {
    width: 215px;
    height: 240px;
    line-height: 240px;
    display: inline-block;
    margin: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 3px 1px rgba(0, 0, 0, .12);
    opacity: 0;
    top: 0;
    position: relative;
    -webkit-transition: all .12s ease-in-out;
       -moz-transition: all .12s ease-in-out;
         -o-transition: all .12s ease-in-out;
        -ms-transition: all .12s ease-in-out;
            transition: all .12s ease-in-out;
}

#finalists .team:hover {
    opacity: 1 !important;
    z-index: 1;
    transform: scale(1.15);
    box-shadow: 0 2px 60px 40px rgba(0, 0, 0, .2);
}

#finalists .team > span {
    display: inline-block;
    vertical-align: middle;
    line-height: normal;
}

#finalists .team h2 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 8px;
    color: inherit;
}

#finalists .team h3 {
    font-size: 15px;
    font-weight: normal;
    margin-top: 20px;
    color: inherit;
}

#finalists .team a {
    color: inherit;
    font-weight: 300;
    font-size: 13px;
    display: inline-block;
    padding: 6px 12px;
    border-radius: 10px;
    background: rgba(0, 0, 0, .08);
    text-decoration: none;
    -webkit-transition: all .25s ease-in-out;
       -moz-transition: all .25s ease-in-out;
         -o-transition: all .25s ease-in-out;
        -ms-transition: all .25s ease-in-out;
            transition: all .25s ease-in-out;
}

#finalists .team a:active,
#finalists .team a:focus,
#finalists .team a:hover {
    background: rgba(0, 0, 0, .6);
    color: white;

}

#footer .text {
    padding: 20px 0 0 0;
    font-size: 12px;
    text-align: right;
}

#footer a:hover {
    color: white;
}

#terms h2 {
    font-size: 24px;
    margin-bottom: 12px;
    font-weight: 500;
}

#terms ol {
    font-size: 24px;
}

#terms p {
    font-size: 16px;
    line-height: normal;
    margin-bottom: 0;
}

#terms ol > li {
    margin-bottom: 40px;
}

#terms ol > li > ol,
#terms ol.default-list {
    font-size: 16px;
    padding-left: 20px;
    list-style-type: lower-latin;
}

#terms ol.default-list {
    list-style-type: decimal;
}

#terms ol > li > ol > li,
#terms ol.default-list > li {
    margin-bottom: 10px;
}

@media (max-width:991px) {
    #nav .navbar-brand .logo-text {
        display: none;
    }

    #top .logo {
        text-align: center;
        padding-right: 15px;
        margin-bottom: 5px;
    }

    #top .logo-text {
        border: 0;
        text-align: center;
    }


    #awards .container > div.award1,
    #awards .container > div.award2,
    #awards .container > div.award3 { text-align: center; }

    .col-prizes {
        margin-top: 50px;
    }

    #social-share {
        display: block;
        margin-top: 20px;
    }

    #photos .italic {
        padding: 0 30px;
    }

    #photos .italic > span {
        display: inline;
    }

    #judges .col-sm-4 {
        margin-bottom: 50px;
    }

    #footer .logo,
    #footer .text {
        text-align: center;
    }

    #timeline .trophy {
        margin-top: 50px;
        background-size: auto 100%;
    }

}

@media (max-width:768px) {
    #nav {
        background: rgba(15, 19, 25, .96) !important;
        min-height: 54px;
    }

    #nav #nav-logo {
        height: 26px;
    }

    #nav .navbar-brand {
        paddin-top: 14px;
    }

    .navbar-default .navbar-toggle {
        border: 0;
        background: white;
    }

    .navbar-default .navbar-toggle .icon-bar {
        background-color: #1B232F;
    }

    .navbar-default .navbar-collapse, .navbar-default .navbar-form {
        border: 0;
    }

    #nav .pull-right {
        float: none !important;
        padding: 0 20px;
    }

    #nav .pull-right li {
        margin-bottom: 10px;
    }

    #nav .pull-right a {
        display: block;
        text-align: center;
        padding-top: 20px;
        padding-bottom: 20px;
        font-size: 18px;
    }
}

@media (max-width:650px) {
    #register .register-inner {
        padding: 50px;
        text-align: center;
    }

    #register .register-inner .form-group {
        text-align: left;
    }
}

@media (max-width:500px) {
    h1 {
        font-size: 24px;
    }

    h2 {
        font-size: 16px;
    }

    .icon {
        width: 16px;
        height: 16px;
        background-size: auto 16px;
    }

    .icon-l {
        width: 32px;
        height: 32px;
        background-size: auto 32px;
    }

    .container {
        padding-left: 0;
        padding-right: 0;
    }

    .section .icon-col {
        padding-top: 10px;
    }

    .section .text-col {
        padding-left: 20px;
    }

    #top h1 {
        margin-top: 20px;
        margin-bottom: 60px;
    }

    #top .btn-main {
        margin: 30px auto;
        font-size: 18px;
        padding: 20px;
    }

    #timeline ul.timeline:before {
        top: -24px;
        bottom: 50px;
        left: -36px;
    }

    #timeline li.timeline:before {
        left: -50px;
    }

    #register .close {
        top: 10px;
        right: 16px;
        font-size: 40px;
    }

    #register .close > span {
        display: none;
    }

    #register .form-group input,
    #register .form-group select {
        font-size: 18px;
        height: 42px;
    }

    #terms ol > li > ol {
        padding-left: 0;
    }
}

/* GENERIC CLASSES */
[data-show-if-currency] {
    display: none;
}

.clear {
    clear: both;
}
.inline {
    display: inline-block;
}

.light {
    font-weight: 300 !important;
}
.normal {
    font-weight: 400 !important;
}
.bold,
strong {
    font-weight: 700 !important;
}
.semibold,
strong.semibold {
    font-weight: 500 !important;;
}
.underline {
    text-decoration: underline;
}
.help {
    border-bottom: 1px dashed #ccc;
    cursor: help;
}
.uppercase {
    text-transform: uppercase;
}
.lowercase {
    text-transform: lowercase;
}
.capitalize {
    text-transform: capitalize;
}
.italic {
    font-style: italic;
}
.white,
.white:hover {
    color: white;
}
.yellow,
.yellow:hover {
    color: #fec007;
}

.secondary {
    color: white;
    color: rgba(15, 19, 25, .54);
}
.secondary-white {
    color: white;
    color: rgba(255, 255, 255, .70);
}
.caption {
    color: white;
    color: rgba(15, 19, 25, .34);
}
.caption-white {
    color: white;
    color: rgba(255, 255, 255, .50);
}

.left {
    text-align: left;
}
.right {
    text-align: right;
}
.center {
    text-align: center;
}
.middle {
    display: table-cell;
    vertical-align: middle;
}

.pointer {
    cursor: pointer;
}

.noscroll {
    overflow: hidden;
}

.relative {
    position: relative;
}

.clearfix:after {
    content: '.';
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0;
}

.clearfix {
    display: inline-block;
}

html[xmlns] .clearfix {
    display: block;
}

* html .clearfix {
    height: 1%;
}

.transition25 {
    -webkit-transition: all .25s ease-in-out;
       -moz-transition: all .25s ease-in-out;
         -o-transition: all .25s ease-in-out;
        -ms-transition: all .25s ease-in-out;
            transition: all .25s ease-in-out;
}

.roundedcorners {
    -webkit-border-radius: 4px;
       -moz-border-radius: 4px;
            border-radius: 4px;
}

.circle {
    -webkit-border-radius: 50%;
       -moz-border-radius: 50%;
            border-radius: 50%;
}

/* Margin all sides */
.man {
    margin: 0 !important;
}
.mat {
    margin: 2px !important;
}
.mas {
    margin: 5px !important;
}
.mam {
    margin: 10px !important;
}
.mab {
    margin: 20px !important;
}
.mah {
    margin: 30px !important;
}

/* Margin top side */
.mtn {
    margin-top: 0 !important;
}
.mtt {
    margin-top: 2px !important;
}
.mts {
    margin-top: 5px !important;
}
.mtm {
    margin-top: 10px !important;
}
.mtb {
    margin-top: 20px !important;
}
.mth {
    margin-top: 30px !important;
}

/* Margin right side */
.mrn {
    margin-right: 0 !important;
}
.mrt {
    margin-right: 2px !important;
}
.mrs {
    margin-right: 5px !important;
}
.mrm {
    margin-right: 10px !important;
}
.mrb {
    margin-right: 20px !important;
}
.mrh {
    margin-right: 30px !important;
}

/* Margin bottom side */
.mbn {
    margin-bottom: 0 !important;
}
.mbt {
    margin-bottom: 2px !important;
}
.mbs {
    margin-bottom: 5px !important;
}
.mbm {
    margin-bottom: 10px !important;
}
.mbb {
    margin-bottom: 20px !important;
}
.mbh {
    margin-bottom: 30px !important;
}

/* Margin left side */
.mln {
    margin-left: 0 !important;
}
.mlt {
    margin-left: 2px !important;
}
.mls {
    margin-left: 5px !important;
}
.mlm {
    margin-left: 10px !important;
}
.mlb {
    margin-left: 20px !important;
}
.mlh {
    margin-left: 30px !important;
}

/* Padding all sides */
.pan {
    padding: 0 !important;
}
.pat {
    padding: 2px !important;
}
.pas {
    padding: 5px !important;
}
.pam {
    padding: 10px !important;
}
.pab {
    padding: 20px !important;
}
.pah {
    padding: 30px !important;
}

/* Padding top side */
.ptn {
    padding-top: 0 !important;
}
.ptt {
    padding-top: 2px !important;
}
.pts {
    padding-top: 5px !important;
}
.ptm {
    padding-top: 10px !important;
}
.ptb {
    padding-top: 20px !important;
}
.pth {
    padding-top: 30px !important;
}

/* Padding right side */
.prn {
    padding-right: 0 !important;
}
.prt {
    padding-right: 2px !important;
}
.prs {
    padding-right: 5px !important;
}
.prm {
    padding-right: 10px !important;
}
.prb {
    padding-right: 20px !important;
}
.prh {
    padding-right: 30px !important;
}

/* Padding bottom side */
.pbn {
    padding-bottom: 0 !important;
}
.pbt {
    padding-bottom: 2px !important;
}
.pbs {
    padding-bottom: 5px !important;
}
.pbm {
    padding-bottom: 10px !important;
}
.pbb {
    padding-bottom: 20px !important;
}
.pbh {
    padding-bottom: 30px !important;
}

/* Padding left side */
.pln {
    padding-left: 0 !important;
}
.plt {
    padding-left: 2px !important;
}
.pls {
    padding-left: 5px !important;
}
.plm {
    padding-left: 10px !important;
}
.plb {
    padding-left: 20px !important;
}
.plh {
    padding-left: 30px !important;
}

.tooltip > .tooltip-inner {
    text-transform: none;
    color: #f3f3f3;
    border: 0;
    padding: 12px;
    font-size: 13px;
    word-break: break-word;
    word-wrap: break-word;
    font-weight: normal;
    background: #1B232F;
    border-radius: 2px;
    -webkit-box-shadow: 0 3px 8px rgba(0,0,0,.25);
       -moz-box-shadow: 0 3px 8px rgba(0,0,0,.25);
            box-shadow: 0 3px 8px rgba(0,0,0,.25);
}

.tooltip.in {
    opacity: 1;
}

.tooltip.top .tooltip-arrow {
    border-top-color: #1B232F;
}
.tooltip.left .tooltip-arrow {
    border-left-color: #1B232F;
}
.tooltip.bottom .tooltip-arrow {
    border-bottom-color: #1B232F;
}
.tooltip.right .tooltip-arrow {
    border-right-color: #1B232F;
}
