﻿* {
    box-sizing: border-box;
    background-repeat: no-repeat;
    font-family: "Open Sans", sans-serif;
}
/* Standard HTML elements */
BODY {
    width: 100%;
    margin: 0;
    font-size: 16px;
    font-weight: 300;
}

H1 {
    color: #6c7480;
    font-size: 180%;
    font-weight: 600;
}

H2 {
    color: #6c7480;
    font-size: 160%;
    font-weight: 400;
    margin-bottom: 0.5em;
}

H3 {
    color: #6c7480;
    font-size: 130%;
    font-weight: 600;
    margin-top: 1.5em;
    margin-bottom: 0.75em;
}

TABLE {
    border-collapse: collapse;
    margin-bottom: 2em;
}

TR {
    vertical-align: top;
    border-top: 1px solid #6c7480;
}

TBODY TR:nth-child(odd) {
    background: #f0f0f0;
}

TBODY TR:nth-child(even) {
}

TH {
    text-align: left;
}

TH, TD {
    padding-top: 0.5em;
    padding-bottom: 0.5em;
    padding-left: 0.25em;
    padding-right: 1em;
}

    TD P:first-child {
        margin-top: 0;
    }

SECTION {
    border-top: 1px solid #6c7480;
    padding-top: 0.5em;
    margin-top: 2em;
}

/* Inline styles */
.bold {
    font-weight: 600;
    color: #6c7480;
}

.inline-placeholder {
    background-color: yellow;
}

A.docLink {
    background-color: #437fc2;
    color: #ffffff;
    text-decoration: none;
    padding: 1em;
    display: inline-block;
    margin-top: 0.5em;
    text-align: center;
    min-width: 100px;
}

/* Custom styles */
#container {
    margin-top: 2em;
    width: 60%;
    margin-left: auto;
    margin-right: auto;
}

#banner {
    overflow: hidden;
    margin-bottom: 4em;
}

#logo {
    width: 324px;
    height: 79px;
    background-image: url('../images/lbsco_324x79.png');
    float: left;
}

#tabs {
    float: left;
    width: calc(100% - 324px);
    margin-top: 2em;
    padding-left: 2em;
    overflow: hidden;
    display: grid;
    grid-gap: 20px;
    grid-template-columns: auto auto auto;
}

.tab {
    color: #6c7480;
    font-weight: 600;
    text-align: center;
    padding-left: 0.25em;
    padding-right: 0.25em;
    padding-bottom: 0.25em;
    margin-left: 1em;
    margin-right: 1em;
    text-transform: uppercase;
    cursor: pointer;
}

    .tab.selected {
        color: #437fc2;
        border-bottom: 5px solid #437fc2;
    }

.tabContent {
    display: none;
}

    .tabContent.showing {
        display: block;
    }

#note {
    padding-left: 1em;
    padding-right: 1em;
    padding-top: 0.25em;
    padding-bottom: 0.25em;
    background-color: #f0f0f0;
}

/*    #note P, #note .bold {
        color: #ffffff;
    }*/

section H2 {
    padding-top: 0.5em;
}

    section H2:before {
        content: " ";
        display: block;
        margin-top: -0.5em;
        width: 60px;
        height: 60px;
        background-size: 100%;
        background-repeat: no-repeat;
        float: left;
        margin-right: 0.5em;
    }

section#datesAndTimes H2:before {
    background-image: url('../images/icon-Calendar.png');
}

section#vendorInfo H2:before {
    background-image: url('../images/icon-meal-delivery.png');
}

section#cancellationPolicy H2:before {
    background-image: url('../images/icon-bus-cancellation.png');
}

section#staffOrdering H2:before {
    background-image: url('../images/icon-shopping-cart.png');
}

section#faqs H2:before {
    background-image: url('../images/icon-FAQ.png');
}

section#parentCollateral H2:before {
    background-image: url('../images/icon-fielding-questions.png');
}

#footer {
    margin-top: 5em;
}

    #footer P {
        font-size: 80%;
    }
