/*!
 * Start Bootstrap - Creative Bootstrap Theme (http://startbootstrap.com)
 * Code licensed under the Apache License v2.0.
 * For details, see http://www.apache.org/licenses/LICENSE-2.0.
 */
 @import url(https://maxcdn.bootstrapcdn.com/font-awesome/4.4.0/css/font-awesome.min.css);
:root {
    --font-color: #222;
    --primary: #001344;
    --primary-button: #e3c038;
    --primary-button-dark: #ad8f18;
    --secondary: #f0f0f0;
    --warning-bg: #e3c138bb;
    --required-bg: #e3c1382a;
    --error: #e3312d;
    --background: #eee;
  --highlight: #ffda79;
  /* Theme color */
  --theme: var(--primary);
}

html,
body {
    width: 100%;
    height: 100%;
}

body {
    font-family: "Nunito Sans", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    color: var(--font-color);
}

hr {
    max-width: 50px;
    border-color: var(--primary);
    border-width: 3px;
}

hr.light {
    border-color: #fff;
}

hr.full {
    max-width: 100%;
    border-width: 1px;
}

a {
    /* color: var(--primary); */
    color: inherit;
    -webkit-transition: all 0.35s;
    -moz-transition: all 0.35s;
    transition: all 0.35s;
    text-decoration: underline;
}

a:hover,
a:focus {
    color: var(--primary-button-dark);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Nunito Sans", "Helvetica Neue", Arial, sans-serif;
    line-height: 1.4em;
}

strong {
    font-weight: 600;
}

.form-control {
    border-radius: 0;
}

p {
    margin-bottom: 20px;
    font-size: 17px;
    line-height: 1.5;
}

button i {
    margin-right: 5px;
}

.float-right {
    float: right;
}

.text-muted {
    opacity: 0.55;
    color: inherit;
}

.text-faded {
    color: var(--font-color) !important;
    opacity: 0.75;
}

/* primary */
.bg-primary {
    background-color: var(--primary);
}

.bg-primary a:not(.btn) {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: underline;
}

.bg-primary a:not(.btn):hover {
    color: var(--primary-button);
}

.bg-primary .text-muted,
.bg-primary .text-faded {
    color: rgba(255, 255, 255, 0.7) !important;
}

.bg-primary .text-faded {
    opacity: 0.9;
}

.bg-primary .text-muted {
    opacity: 0.8;
}

/* secondary */
.bg-secondary {
    background-color: var(--secondary);
    /* color: #000; */
    color: var(--font-color);
}

.bg-secondary a:not(.btn) {
    text-decoration: underline;
}

.bg-secondary a:not(.btn):hover {
    color: var(--primary-button);
}

.bg-dark {
    color: #fff;
    background-color: #222;
}

.bg-warning {
    background-color: var(--warning-bg);
}

.bg-dark a:not(.btn) {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: underline;
}

.bg-dark a:hover {
    color: rgba(255, 255, 255, 1);
}

.bg-dark .text-faded {
    color: rgba(255, 255, 255, 0.9) !important;
}

.bg-dark .btn {
    color: #000;
}

.warning {
    padding: 10px;
    text-align: center;
}

section {
    padding: 100px 0;
}

aside {
    padding: 50px 0;
}

.no-padding {
    padding: 0;
}

/* tooltips */
label i.fa-info-circle,
th i.fa-info-circle {
    position: relative;
    margin-left: 10px;
}

span[data-tooltip] {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
}

span[data-tooltip]::before {
    content: attr(data-tooltip);
    font-family: "Nunito Sans", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.3em;
    position: absolute;
    display: none;

    /* vertically center */
    top: 50%;
    transform: translateY(-50%);

    /* move to right */
    left: 100%;
    margin-left: 15px; /* and add a small left margin */

    /* basic styles */
    width: 250px;
    padding: 10px 20px;
    border-radius: 10px;
    background: #000;
    color: #fff;
    z-index: 100000000;
}

th span[data-tooltip]::before {
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    text-align: left;
}

span[data-tooltip]:hover::after {
    content: " ";
    position: absolute;
    top: 50%;
    right: -15px;
    margin-top: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: transparent black transparent transparent;
}

th span[data-tooltip]:hover::after {
    content: " ";
    position: absolute;
    top: 10px; /* At the top of the tooltip */
    right: 0;
    left: 50%;
    margin-left: -5px;
    margin-top: 0;
    border-width: 5px;
    border-style: solid;
    border-color: transparent transparent black transparent;
}

span[data-tooltip]:hover::before {
    display: block;
}

/* video */
.video-container {
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 0;
    height: 0;
    overflow: hidden;
    margin-bottom: 0;
}

.video-container iframe,
.video-container object,
.video-container embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* battleship */
input[required] {
    background-color: var(--required-bg);
}

input.ng-touched.ng-invalid {
    border: 1px solid var(--error);
}

p.error {
    background-color: var(--warning-bg);
    font-size: 14px;
    padding: 6px 12px;
}

.faq p {
    font-size: 16px;
}

#battleship-coding-contest-player .modal-body p {
    font-size: 15px;
}

#battleship-coding-contest-prices img {
    padding: 20px;
    max-width: 100%;
    max-height: 160px;
    transition: all 0.3s ease-out;
}

#battleship-coding-contest-prices img.basta {
    max-height: 120px;
}

#battleship-coding-contest-prices p.text-center {
    font-weight: bold;
}

#battleship-coding-contest-prices img:hover {
    transform: scale(1.1);
}

/* tables */
.table > thead > tr > th {
    border-bottom: 1px solid #555;
}

.table > tbody > tr > td {
    border-top: 1px solid #555;
}

section.bg-dark .table > tbody > tr > td {
    border-top: 1px solid #777;
}

/* nav */
#mainNav {
    box-shadow: 2px 2px 15px 7px rgba(0, 0, 0, 0.05);
}

.navbar-default {
    /* border-color: rgba(255, 255, 255, .3);
    background-color: transparent; */
    border-color: rgba(34, 34, 34, 0.05);
    font-family: "Open Sans", "Helvetica Neue", Arial, sans-serif;
    background-color: #fff;
    -webkit-transition: all 0.35s;
    -moz-transition: all 0.35s;
    transition: all 0.35s;
}

.navbar-brand {
    padding-top: 8px;
    padding-bottom: 8px;
}

.navbar-default .navbar-header .navbar-brand {
    text-transform: uppercase;
    font-family: "Open Sans", "Helvetica Neue", Arial, sans-serif;
    font-weight: 700;
    /* color: var(--primary); */
    color: rgba(255, 255, 255, 0.7);
}

.navbar-default .navbar-header .navbar-brand:hover,
.navbar-default .navbar-header .navbar-brand:focus {
    /* color: #0288d1; */
}

.navbar-default .nav > li > a,
.navbar-default .nav > li > a:focus {
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    /* color: #222; */
}

.navbar-default .nav > li > a:hover,
.navbar-default .nav > li > a:focus:hover {
    /* color: var(--primary); */
}

.navbar-default .nav > li.active > a,
.navbar-default .nav > li.active > a:focus {
    color: var(--primary-button) !important;
    background-color: transparent;
}

.navbar-default .nav > li.active > a:hover,
.navbar-default .nav > li.active > a:focus:hover {
    background-color: transparent;
}

@media (max-width: 767px) {
    .table td,
    .table th {
        display: block;
        height: auto !important;
        overflow: hidden;
    }
}

/* #page .navbar-default.affix, #page .navbar-default.affix-top {
    border-color: rgba(34, 34, 34, .05);
    background-color: #fff;
} */

@media (min-width: 768px) {
    .navbar-default {
        border-color: rgba(255, 255, 255, 0.3);
        background-color: transparent;
    }

    .navbar-default .navbar-header .navbar-brand {
        color: rgba(255, 255, 255, 0.7);
    }

    .navbar-default .navbar-header .navbar-brand:hover,
    .navbar-default .navbar-header .navbar-brand:focus {
        color: #fff;
    }

    .navbar-default .nav > li > a,
    .navbar-default .nav > li > a:focus {
        color: rgba(255, 255, 255, 0.7);
    }

    .navbar-default .nav > li > a:hover,
    .navbar-default .nav > li > a:focus:hover {
        color: #fff;
    }

    .navbar-default.affix,
    #page .navbar-default.affix-top {
        border-color: rgba(34, 34, 34, 0.05);
        background-color: #fff;
    }

    .navbar-default.affix .navbar-header .navbar-brand,
    #page .navbar-default.affix-top .navbar-header .navbar-brand {
        font-size: 14px;
        color: var(--primary-button);
    }

    .navbar-default.affix .navbar-header .navbar-brand:hover,
    #page
        .navbar-default.affix-top
        .navbar-header
        .navbar-brand:hover
        .navbar-default.affix
        .navbar-header
        .navbar-brand:focus,
    #page .navbar-default.affix-top .navbar-header .navbar-brand:focus {
        color: #0288d1;
    }

    .navbar-default.affix .nav > li > a,
    #page .navbar-default.affix-top .nav > li > a,
    .navbar-default.affix .nav > li > a:focus,
    #page .navbar-default.affix-top .nav > li > a:focus {
        color: #222;
    }

    .navbar-default.affix .nav > li > a:hover,
    #page .navbar-default.affix-top .nav > li > a:hover,
    .navbar-default.affix .nav > li > a:focus:hover,
    #page .navbar-default.affix-top .nav > li > a:focus:hover {
        color: var(--primary-button);
    }
}

header {
    position: relative;
    width: 100%;
    min-height: 650px;
    /* min-height: auto; */
    text-align: center;
    color: #fff;
    backdrop-filter: grayscale(30%);
    background-position: center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
    -o-background-size: cover;
    margin-top: 5rem;
}

header .header-content {
    /* position: relative;
    padding: 100px 15px;
    text-align: center; */
    position: absolute;
    width: 100%;
    top: 50%;
    height: 100%;
    /* padding: 0 50px; */
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

header .header-content .header-content-inner h1 {
    margin-top: 0;
    margin-bottom: 0;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 30px;
}

header .header-content .header-content-inner hr {
    margin: 30px auto;
}

header .header-content .header-content-inner p.title {
    margin-top: 50px;
    font-weight: 300;
    font-size: 26px;
}

header .header-content .header-content-inner p.date {
    margin-bottom: 50px;
    margin-top: 20px;
    font-size: 18px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

header .subtitle {
    font-size: 22px;
}

header .fa-chevron-circle-down {
    margin-right: 5px;
}

@media (min-width: 768px) {
    header {
        min-height: 100%;
        margin-top: 0rem !important;
    }

    header .header-content {
        position: absolute;
        padding: 0 0px;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
    }

    header .header-content .header-content-inner {
        margin-right: auto;
        margin-left: auto;
        max-width: 1000px;
    }

    header .header-content .header-content-inner p {
        margin-right: auto;
        margin-left: auto;
        max-width: 80%;
        font-size: 24px;
    }

    header .header-content .header-content-inner p.title {
        font-weight: 300;
        font-size: 44px;
        line-height: 80px;
    }
}

.section-heading {
    margin-top: 0;
}

.service-box {
    margin: 50px auto 0;
    max-width: 400px;
}

@media (min-width: 992px) {
    .service-box {
        margin: 20px auto 0;
    }
}

.service-box p {
    margin-bottom: 0;
}

.portfolio-box {
    display: block;
    position: relative;
    margin: 0 auto;
    max-width: 650px;
}

.portfolio-box .portfolio-box-caption {
    display: block;
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 100%;
    text-align: center;
    color: #fff;
    opacity: 0;
    background: rgba(240, 95, 64, 0.9);
    -webkit-transition: all 0.35s;
    -moz-transition: all 0.35s;
    transition: all 0.35s;
}

.portfolio-box .portfolio-box-caption .portfolio-box-caption-content {
    position: absolute;
    top: 50%;
    width: 100%;
    text-align: center;
    transform: translateY(-50%);
}

.portfolio-box .portfolio-box-caption .portfolio-box-caption-content .project-category,
.portfolio-box .portfolio-box-caption .portfolio-box-caption-content .project-name {
    padding: 0 15px;
    font-family: "Nunito Sans", "Helvetica Neue", Arial, sans-serif;
}

.portfolio-box .portfolio-box-caption .portfolio-box-caption-content .project-category {
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 600;
}

.portfolio-box .portfolio-box-caption .portfolio-box-caption-content .project-name {
    font-size: 18px;
}

.portfolio-box:hover .portfolio-box-caption {
    opacity: 1;
}

@media (min-width: 768px) {
    .portfolio-box .portfolio-box-caption .portfolio-box-caption-content .project-category {
        font-size: 16px;
    }

    .portfolio-box .portfolio-box-caption .portfolio-box-caption-content .project-name {
        font-size: 22px;
    }
}

.call-to-action h2 {
    margin: 0 auto 20px;
}

.text-primary {
    color: var(--primary-button);
}

.no-gutter > [class*="col-"] {
    padding-right: 0;
    padding-left: 0;
}

.btn {
    padding-left: 25px;
    padding-right: 25px;
    text-decoration: none;
}

.btn-default {
    border-color: var(--secondary);
    color: #000 !important;
    border-width: 1px;
    border-style: solid;
    background-color: var(--secondary);
    -webkit-transition: all 0.35s;
    -moz-transition: all 0.35s;
    transition: all 0.35s;
}

.btn-default:hover,
.btn-default:focus,
.btn-default.focus,
.btn-default:active,
.btn-default.active,
.open > .dropdown-toggle.btn-default {
    border-color: var(--primary-button-dark);
    color: #000;
    background-color: var(--primary-button-dark);
}

.btn-default:active,
.btn-default.active,
.open > .dropdown-toggle.btn-default {
    background-image: none;
}

.btn-default.disabled,
.btn-default[disabled],
fieldset[disabled] .btn-default,
.btn-default.disabled:hover,
.btn-default[disabled]:hover,
fieldset[disabled] .btn-default:hover,
.btn-default.disabled:focus,
.btn-default[disabled]:focus,
fieldset[disabled] .btn-default:focus,
.btn-default.disabled.focus,
.btn-default[disabled].focus,
fieldset[disabled] .btn-default.focus,
.btn-default.disabled:active,
.btn-default[disabled]:active,
fieldset[disabled] .btn-default:active,
.btn-default.disabled.active,
.btn-default[disabled].active,
fieldset[disabled] .btn-default.active {
    border-color: #fff;
    background-color: #fff;
}

.btn-default .badge {
    color: #fff;
    background-color: #222;
}

.btn-primary {
    border-color: #e3c038;
    background-color: #e3c038;
    color: #000;
    -webkit-transition: all 0.35s;
    -moz-transition: all 0.35s;
    transition: all 0.35s;
    text-decoration: none !important;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary:active,
.btn-primary.active,
.open > .dropdown-toggle.btn-primary {
    border-color: var(--primary-button-dark);
    color: #000;
    background-color: var(--primary-button-dark);
}

.btn-primary:active,
.btn-primary.active,
.open > .dropdown-toggle.btn-primary {
    background-image: none;
}

.btn-primary.disabled,
.btn-primary[disabled],
fieldset[disabled] .btn-primary,
.btn-primary.disabled:hover,
.btn-primary[disabled]:hover,
fieldset[disabled] .btn-primary:hover,
.btn-primary.disabled:focus,
.btn-primary[disabled]:focus,
fieldset[disabled] .btn-primary:focus,
.btn-primary.disabled.focus,
.btn-primary[disabled].focus,
fieldset[disabled] .btn-primary.focus,
.btn-primary.disabled:active,
.btn-primary[disabled]:active,
fieldset[disabled] .btn-primary:active,
.btn-primary.disabled.active,
.btn-primary[disabled].active,
fieldset[disabled] .btn-primary.active {
    border-color: var(--primary-button);
    background-color: var(--primary-button);
}

.btn-primary .badge {
    color: var(--primary-button);
    background-color: #fff;
}

.btn-info {
    border-color: #d0d0d0;
    color: #000;
    background-color: #d0d0d0;
    -webkit-transition: all 0.35s;
    -moz-transition: all 0.35s;
    transition: all 0.35s;
}

.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info:active,
.btn-info.active,
.open > .dropdown-toggle.btn-primary {
    border-color: #aaa;
    color: #000;
    background-color: #aaa;
}

.btn {
    border: 0;
    border-radius: 300px;
    text-transform: uppercase;
    font-family: "Nunito Sans", "Helvetica Neue", Arial, sans-serif;
    font-weight: 700;
}

.btn-xl {
    padding: 15px 30px;
}

.btn-success {
    background-color: #4ca30a;
    border-color: #4ca30a;
    text-decoration: none !important;
}

.btn-success:hover {
    background-color: #3a7d07;
    border-color: #3a7d07;
}

.discord-button {
    margin-top: 10px;
}

.discord-button img {
    width: 30px;
    height: 30px;
    margin-right: 8px;
}

::-moz-selection {
    text-shadow: none;
    color: #fff;
    background: #222;
}

::selection {
    text-shadow: none;
    color: #fff;
    background: #222;
}

img::selection {
    color: #fff;
    background: 0 0;
}

img::-moz-selection {
    color: #fff;
    background: 0 0;
}

body {
    webkit-tap-highlight-color: #222;
}

#map {
    height: 500px;
    overflow: visible;
    position: relative;
}

#mce-error-response {
    margin-top: 20px;
    padding: 12px;
    background-color: var(--primary-button);
    color: #555;
}

#mce-success-response {
    margin-top: 20px;
    padding: 12px;
    background-color: #82d10a;
    color: #555;
}

#mce-error-response a,
#mce-success-response a {
    color: #555;
}

/* Modal */
.modal-content {
    border-radius: 0;
}

.modal h4 {
    font-weight: bold;
}

/* Hero */
.hero-image {
    max-height: 25vh;
    max-width: 90vw;
}

.gather-town-link {
    font-size: 24px;
    font-weight: 800;
    letter-spacing: 0.05em;
    padding-left: 60px;
    padding-right: 60px;
}

@media (max-width: 767px) {
    .gather-town-link {
        font-size: 15px;
        padding-left: 20px;
        padding-right: 20px;
        letter-spacing: normal;
        font-weight: 700;
    }
}

.gather-town-link i {
    margin-right: 20px !important;
}

.join-us {
    color: var(--primary-button);
    font-weight: bold;
    font-size: 30px;
    margin-top: 40px;
}

/* About */
#about hr,
#junior-bootcamp hr {
    border-color: var(--primary-button);
    border-width: 2px;
}

#about hr:first-of-type,
#junior-bootcamp hr:first-of-type {
    border-color: #000;
    border-width: 3px;
}

#about p.text-faded {
    font-size: 16px;
}

/* Sponors */
.sponsors p {
    font-size: 16px !important;
    color: #777;
}

.sponsors img {
    max-width: 250px;
    width: 80%;
    margin-bottom: 20px;
}

.sponsors img.prio1 {
    max-width: 400px;
    width: 80%;
}

.sponsors img.prio3 {
    max-width: 250px;
    width: 80%;
}

.sponsors img.prio4 {
    max-width: 150px;
    width: 80%;
}

.sponsors img.prio5 {
    max-width: 180px;
    width: 80%;
}

.sponsors a img {
    transition: all 0.4s ease-in-out;
}

.sponsors a img:hover {
    transform: scale(1.1);
}

.sponsor {
    padding-top: 40px;
    margin-top: -40px;
}

.sponsor-type {
    font-size: 16px;
    text-transform: uppercase;
    line-height: 26.4px;
    font-weight: lighter;
}

.sponsor-overview h3.sponsor-type {
    margin-top: 30px;
    margin-bottom: 30px;
}

.sponsor-logo {
    margin-top: auto;
    margin-bottom: auto;
}

/* Speakers */
.sessions .row {
    padding-top: 30px;
    margin-top: -30px;
}

.sessions .text-muted,
.sessions .text-muted p,
.speakers .text-muted {
    font-size: 16px;
}

.streaming-link {
    border-radius: 30px;
}

.equal2 {
    display: flex;
    display: -webkit-flex;
    flex-wrap: wrap;
}

.sessions .bio {
    font-weight: 300;
}

.sessions .btn-info,
.schedule-session .btn-primary {
    margin-right: 10px;
}

.sessions h4,
.schedule-session h4 {
    margin-top: 30px;
}

.sessions .avatar img,
.speakers .avatar img,
.speaker .avatar img,
.schedule-speaker .avatar img {
    width: 100%;
    max-width: 160px;
    border-radius: 50%;
    margin-top: 20px;
    box-shadow: 2px 2px 15px 7px rgba(0, 0, 0, 0.05);
}

.modal-dialog .speaker .avatar img {
    float: right;
    margin-top: 10px;
    margin-left: 20px;
    margin-bottom: 20px;
}

.modal-dialog .bio,
.modal-dialog .bio p {
    font-size: 15px;
}

.schedule-speaker .avatar img {
    float: right;
    margin-left: 10px;
    margin-right: 5px;
    margin-bottom: 10px;
}

.speakers .speaker {
    cursor: pointer;
}

.speaker {
    margin-bottom: 20px;
}

.speaker .link {
    margin-bottom: 2px;
    overflow: hidden;
}

.speaker .link i {
    margin-right: 10px;
}

.speaker .sessions a {
    font-size: 14px;
}

/* Contact */
#contact h3 {
    font-size: 20px;
}

#contact p {
    font-size: 15px;
}

#mc_embed_signup input[type="submit"] {
    width: 50%;
    margin-left: auto;
    margin-right: auto;
}

.discord-link img {
    width: 22px;
}

.email-link,
.discord-link {
    line-height: 28px;
}

.discord-link img,
.email-link i {
    margin-right: 8px;
}

/* Schedule */
#schedule .btn-default {
    margin-top: 20px;
    margin-bottom: 20px;
}

.schedule {
    margin-top: 20px;
}

.schedule td.visible-xs,
.schedule th.visible-xs {
    display: none !important;
}

.schedule th {
    white-space: nowrap;
}

.schedule tr.service-session td {
    background-color: rgba(255, 255, 255, 0.1);
}

.schedule td.service-session {
    font-size: 16px;
    vertical-align: middle;
}

.schedule .service-session-time {
    margin-right: 15px;
}

.schedule .session {
    font-size: 15px;
}

.schedule .session .label {
    margin-right: 5px;
    display: block;
    margin-bottom: 8px;
    text-align: left;
}

.schedule .session-link {
    cursor: pointer;
}

.schedule .session a {
    text-decoration: none;
}

.schedule .timeslot {
    font-size: 12px;
    /* opacity: 0.66; */
}

.schedule .language,
.sessions .language {
    float: right;
    font-weight: 300;
    margin-top: 1px;
}

.schedule .speaker {
    padding-top: 10px;
    font-size: 12px;
}

.schedule .speaker span[onclick] {
    cursor: pointer;
}

.schedule .speaker span[onclick]:hover,
.schedule .session a:hover {
    text-decoration: underline;
}

.schedule .calendar {
    padding-top: 10px;
    font-size: 12px;
}

.schedule .calendar a {
    cursor: pointer;
}

.schedule .calendar a:hover {
    text-decoration: underline;
}

.schedule tr {
    height: 1px;
}

.schedule td {
    height: inherit;
}

.schedule .links,
.sessions .links {
    margin-block-end: 1em;
}

.schedule .links a,
.sessions .links a {
    line-height: 1.6em;
}

.schedule .links a {
    font-size: 12px;
}

.schedule .streaming-link,
.sessions .streaming-link {
    /* text-align: center; */
    cursor: pointer;
}

.schedule .streaming-link a,
.sessions .streaming-link a {
    padding: 2px 10px;
    border-radius: 10px;
    background-color: #2980b9;
}

#schedule .changed-sessions p {
    font-size: 15px;
}

.sessions .links a {
    font-size: 14px;
}

.schedule-junior .calendar-link {
    margin-top: 10px;
    margin-bottom: 10px;
}

.schedule-junior .btn {
    margin-right: 20px;
}

.btn i,
.schedule .links a i,
.sessions .links a i,
.sessions .calendar-link a i,
.schedule-session .links a i,
.schedule-junior a i {
    margin-right: 10px;
}

@media (max-width: 767px) {
    .schedule:not(.schedule-junior) tr td:first-of-type {
        font-weight: bold;
        background-color: #444;
    }

    .schedule td.visible-xs,
    .schedule th.visible-xs {
        display: block !important;
    }
}

.footer-content {
    padding-left: 0;
}

.footer-content li {
    list-style-type: none;
}

.covid {
    color: yellow;
}

/* schedule junior */
#schedule-junior .description,
#schedule-junior .description p {
    font-size: 15px !important;
}

#schedule-junior .streaming-link {
    font-size: 14px;
    padding: 2px 10px;
    margin-top: 20px;
    margin-left: auto;
    margin-right: auto;
    max-width: 300px;
}

.junior-bootcamp p {
    font-size: 16px;
}

/* single page */
.single-page h2:not(.section-heading) {
    text-align: center;
    margin-top: 0;
}

.single-page h2:not(.section-heading)::after {
    content: "";
    width: 50px;
    height: 3px;
    background-color: var(--primary);
    display: block;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
    margin-bottom: 20px;
}

.single-page p,
.single-page li {
    font-size: 16px;
    color: rgb(119, 119, 119);
}

figure.flex {
    margin-bottom: 20px;
}

figure.flex img {
    width: 100%;
}

/* CUSTOMIZE THE CAROUSEL
-------------------------------------------------- */

/* Carousel base class */
.carousel {
    height: 500px;
    margin-bottom: 60px;
  }
  /* Since positioning the image, we need to help out the caption */
  .carousel-caption {
    z-index: 10;
  }
  
  /* Declare heights because of positioning of img element */
  .carousel .item {
    height: 500px;
    background-color: #777;
  }
  .carousel-inner > .item > img {
    position: absolute;
    top: 0;
    left: 0;
    min-width: 100%;
    height: 500px;
  }
/**************************** ACCORDION *******************************/

/* Core styles/functionality */
.tab input {
    position: absolute;
    opacity: 0;
    z-index: -1;
  }
  .tab__content {
    max-height: 0;
    overflow: hidden;
    transition: all 0.35s;
  }
  .tab input:checked ~ .tab__content {
    max-height: 100rem;
  }
  
  /* Visual styles */
  .accordion {
    color: var(--theme);
    border: 2px solid;
    border-radius: 0.5rem;
    overflow: hidden;
  }
  .tab__label,
  .tab__close {
    display: flex;
    color: white;
    background: var(--theme);
    cursor: pointer;
  }
  .tab__label {
    justify-content: space-between;
    padding: 1rem;
  }
  .tab__label::after {
    content: "\276F";
    width: 1em;
    height: 1em;
    text-align: center;
    transform: rotate(90deg);
    transition: all 0.35s;
  }
  .tab input:checked + .tab__label::after {
    transform: rotate(270deg);
  }
  .tab__content p {
    margin: 0;
    padding: 1rem;
  }
  .tab__close {
    justify-content: flex-end;
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
  }
  .accordion--radio {
    --theme: var(--secondary);
  }
  
  /* Arrow animation */
  .tab input:not(:checked) + .tab__label:hover::after {
    animation: bounce .5s infinite;
  }
  @keyframes bounce {
    25% {
      transform: rotate(90deg) translate(.25rem);
    }
    75% {
      transform: rotate(90deg) translate(-.25rem);
    }
  }
  

  /********************* TIMELINE *************************/
  *,
  *::before,
  *::after {
    box-sizing: border-box;
  }
  
  body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: #ffffff;
  }
  
  .timeline {
    position: relative;
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 15px 0;
  }
  
  .timeline::after {
    content: '';
    position: absolute;
    width: 2px;
    background: #006E51;
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -1px;
  }
  
  .containerTime {
    padding: 15px 30px;
    position: relative;
    background: inherit;
    width: 50%;
  }
  
  .containerTime.left {
    left: 0;
  }
  
  .containerTime.right {
    left: 50%;
  }
  
  .containerTime::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    top: calc(50% - 8px);
    right: -8px;
    background: #ffffff;
    border: 2px solid #006E51;
    border-radius: 16px;
    z-index: 1;
  }
  
  .containerTime.right::after {
    left: -8px;
  }
  
  .containerTime::before {
    content: '';
    position: absolute;
    width: 50px;
    height: 2px;
    top: calc(50% - 1px);
    right: 8px;
    background: #006E51;
    z-index: 1;
  }
  
  .containerTime.right::before {
    left: 8px;
  }
  
  .containerTime .date {
    position: absolute;
    display: inline-block;
    top: calc(50% - 8px);
    text-align: center;
    font-size: 14px;
    font-weight: bold;
    color: #006E51;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 1;
  }
  
  .containerTime.left .date {
    right: -75px;
  }
  
  .containerTime.right .date {
    left: -75px;
  }
  
  .containerTime .icon {
    position: absolute;
    display: inline-block;
    width: 40px;
    height: 40px;
    padding: 9px 0;
    top: calc(50% - 20px);
    background: #F6D155;
    border: 2px solid #006E51;
    border-radius: 40px;
    text-align: center;
    font-size: 18px;
    color: #006E51;
    z-index: 1;
  }
  
  .containerTime.left .icon {
    right: 56px;
  }
  
  .containerTime.right .icon {
    left: 56px;
  }
  
  .containerTime .content {
    padding: 30px 90px 30px 30px;
    background: #F6D155;
    position: relative;
    border-radius: 0 500px 500px 0;
  }
  
  .containerTime.right .content {
    padding: 30px 30px 30px 90px;
    border-radius: 500px 0 0 500px;
  }
  
  .containerTime .content h2 {
    margin: 0 0 10px 0;
    font-size: 18px;
    font-weight: normal;
    color: #006E51;
  }
  
  .containerTime .content p {
    margin: 0;
    font-size: 16px;
    line-height: 22px;
    color: #000000;
  }

  @media (min-width: 800px) {
    .leftDouble{
        left:-100px !important;
    }
  }
  
  @media (max-width: 767.98px) {
    .timeline::after {
      left: 90px;
    }
  
    .containerTime {
      width: 100%;
      padding-left: 120px;
      padding-right: 30px;
    }
  
    .containerTime.right {
      left: 0%;
    }
  
    .containerTime.left::after, 
    .containerTime.right::after {
      left: 82px;
    }
  
    .containerTime.left::before,
    .containerTime.right::before {
      left: 100px;
      border-color: transparent #006E51 transparent transparent;
    }
  
    .containerTime.left .date,
    .containerTime.right .date {
      right: auto;
      left: 15px;
    }
  
    .containerTime.left .icon,
    .containerTime.right .icon {
      right: auto;
      left: 146px;
    }
  
    .containerTime.left .content,
    .containerTime.right .content {
      padding: 30px 30px 30px 90px;
      border-radius: 500px 0 0 500px;
    }
  }


  @media (max-width: 420.98px) {

    .containerTime .content {
        background-color: transparent;
    }
  }

  
/*price*/
/* Style the list */
.price {
    list-style-type: none;
    border: 1px solid #eee;
    margin: 0;
    padding: 0;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  
  /* Add shadows on hover */
  .price:hover {
    box-shadow: 0 8px 12px 0 rgba(0,0,0,0.2)
  }
  
  /* Pricing header */
  .price .header {
    background-color: #ed214e;
    color: white;
    font-size: 25px;
  }
  
  /* List items */
  .price li {
    border-bottom: 1px solid #eee;
    padding: 20px;
    text-align: center;
  }
  
  /* Grey list item */
  .price .grey {
    background-color: #eee;
    font-size: 20px;
  }
  

.snip1533 {
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
  color: #ffffff;
  display: inline-block;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  margin: 35px 10px 10px;
  min-width: 250px;
  position: relative;
  text-align: center;
  width: 100%;
  border-radius: 5px;
  border-top: 5px solid #ffffff;
}

.snip1533 *,
.snip1533 *:before {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 0.1s ease-out;
  transition: all 0.1s ease-out;
}

.snip1533 figcaption {
  padding: 13% 10% 12%;
}

.snip1533 figcaption:before {
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: #fff;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
  color: #000000;
  content: "\f10e";
  font-family: 'FontAwesome';
  font-size: 32px;
  font-style: normal;
  left: 50%;
  line-height: 60px;
  position: absolute;
  top: -30px;
  width: 60px;
}

.snip1533 h3 {
  color: #3c3c3c;
  font-size: 20px;
  font-weight: 300;
  line-height: 24px;
  margin: 10px 0 5px;
}

.snip1533 h4 {
  font-weight: 400;
  margin: 0;
  opacity: 0.5;
}

.snip1533 blockquote {
  font-style: italic;
  font-weight: 300;
}

.earlyBird{
    background-color: #e3c038;
    text-align: center;
    font-weight: 700;
}
.earlyBird p{
    margin: 0;
}

#banner-2026 {
    position: sticky;
    bottom: 0;
    left: 0;
    background-color: #e3c038 !important;
    color: #000;
    padding: 60px 0;
}

.speakers-table tr, th, td{
   padding-right: 2%;
   padding-top: 5px; 
}

.speakers-table tr {
    border-bottom: 1px solid #000000;
}