﻿/* Define color variables */
:root {
    --highlight-button-color: 234,128,40;
    --theme-color: 102,102,102; /* gray */
    --basic-text-color: 102,102,102;
    --text-link-color: 0, 89, 178;
    --text-link-color-hover: 232, 174, 37;
    --theme-font: Nunito Sans, sans-serif;
    --text-link-button-color: 255, 255, 255;
    --text-menu-hover-color: 255, 255, 255;
}

html {
    scroll-padding-top: 150px;
}

body {
    padding: 0px;
    font-family: var(--theme-font);
    margin: 0px;
    background-color: #fff;
    color: rgb(var(--basic-text-color));
    font-size: 1rem;
    background-color: #eee;
}

#divSite {
    background-color:white;
}

a {
    text-decoration: none;
    color: rgb(var(--text-link-color));
}
    a:hover {
        color: rgb(var(--text-link-color-hover));
        text-decoration: underline;
    }

h1 {
    font-size: 1.3rem;
    font-weight: bold;
    padding-bottom: .1rem;
    margin-top: 0px;
    margin-bottom: 1.5rem;
    border-bottom: .15rem solid #ccc;
    display: block;
}

h2 {
    font-size: 1.1rem;
    font-weight: bold;
    padding-bottom: .1rem;
    margin-top: 0px;
    margin-bottom: 1.5rem;
    border-bottom: solid .5px #eee;
    display: block;
    color: rgb(var(--basic-text-color));
}

h3 {
    font-size: 1rem;
    font-weight: bold;
    padding-bottom: .1rem;
    margin-top: 1rem;
    margin-bottom: 1.2rem;
}

h4 {
    font: bold .9rem;
    margin-bottom: 0px;
    display: inline;
}

h5 {
    font: bold 12px;
    color: #666;
    display: inline;
}

hr {
    border: .5px solid #eee;
    margin-bottom:15px;
}
#publicHeading {
    padding-top: 10px;
    padding-bottom: 10px;
    background-color:#fff;
}


#bannerDesktop, #bannerMobile {
    width:100%;
    max-height:250px;
}

#topBar {
    height: 10px;
    background-color: rgba(var(--theme-color),.9);
}

#mainMenu {
    padding-left: 2%;
    height: 50px;
    font-weight: bold;
    background-color: rgb(var(--theme-color));
    position:sticky;
    top:0px;
    z-index:10;
}

    #mainMenu table {
        padding: 0px;
        border-spacing: 0px;
        width:100%;
    }

    #mainMenu a {
        font-size: .9em;
        color: rgb(var(--text-link-button-color));
        text-decoration: none;
        margin-right: 35px;
        text-transform: uppercase;
        letter-spacing: .1em;
        vertical-align:middle;
    }

    #mainMenu a:hover {
        text-decoration: underline;
    }

    #mainMenu svg {
        vertical-align:middle;
        fill: rgb(var(--text-link-button-color));
    }
#menuButton {
    cursor: pointer;
}

#topMenu svg path {
    fill:#ddd;
}

svg.warning path {
    fill: rgb(var(--highlight-button-color));
}

svg.link path {
    fill: rgb(var(--text-link-color));
}

svg.link {
    vertical-align:middle;
}

div:hover > svg:not(.warning) > path, #topMenu a:hover > svg:not(.warning) > path {
    fill: rgb(var(--text-menu-hover-color));
}

A:hover > svg.link > path {
    fill: rgb(var(--text-link-color-hover));
}

svg.close > path {
    fill: #333;
}

svg.close:hover > path {
    fill:#aaa;
}

div.acclink > svg > path, a.acclink > svg > path {
    fill:#777;
}

div.acclink:hover > svg > path, a.acclink:hover > svg > path {
    fill:#fff;
}
.menuIcon {
    display:inline-block;
}

.directions {
    padding: 20px;
    font-size: .9em;
    line-height: 1.4em;
    background-color:#efefef;
}
.directions div {
    max-width:600px;
}
#dark {
    background: rgba(0,0,0,0.4);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: none;
    z-index: 4;
}

#account, #shoppingCart, #messages, #signIn, #signOut, #home {
    position: relative;
    display: inline-block;
}


 #menuButton {
    margin-left: 20px;
}

#account, #shoppingCart, #home {
    margin-right:20px;
}
#signIn, #signOut {
    margin-right:0px;
    padding-right:0px;
}

#account, #shoppingCart, #messages, #signIn img {
    vertical-align: middle;
}

.numberTip {
    color: white;
    /*position: absolute;
    right: -13px;
    top: -9px;
    border-radius: 50%;*/
    font-weight: bold;
    /*padding: 3px 7px;*/
    font: bold .7em;
    margin-left:5px;
    display:inline-block;
    
}

#content {
    min-height: 400px;
    padding-top: 35px;
    padding-left:3%;
    padding-right:3%;
    padding-bottom:50px;
    background-color:#fff;
}

#divRegistrationTracker {
        font-size: 1rem;
        position:sticky;
    top: 50px;
    z-index: 10;
    background-color:white;

}


#divTrackerHeader {
    padding-left: 3%;
    padding-right: 3%;
    background-color: rgba(var(--highlight-button-color), .1);
    padding-top: 10px;
    padding-bottom: 10px;
}

#divTrackerSteps {
    display:none;
    position: absolute;
    top: 0px;
    background-color: white;
    width:100%;
    box-sizing:border-box;
    padding-bottom:30px;
    border-bottom: solid 1px #ddd;
}

    #divTrackerSteps > div {
        padding-top: 20px;
        white-space:nowrap;
        color: rgb(var(--basic-text-color));
    }

        #divTrackerSteps > div.complete:before, #divTrackerSteps > div.inprocess:before, #divTrackerSteps > div.incomplete:before {
            display: inline-block;
            margin-left: 20px;
            margin-right:20px;
            margin-bottom: 4px;
            width: 16px;
            height: 16px;
            vertical-align: middle;
        }



        #divTrackerSteps > div.complete:before {
            content: url('icons/svg2/check-square-solid.svg');
        }

        #divTrackerSteps > div.inprocess:before {
            content: url("data:image/svg+xml;charset=UTF-8, <svg xmlns='http://www.w3.org/2000/svg' version='1.1'  viewBox='0 0 448 512'><path fill='green' d='M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm-6 400H54c-3.3 0-6-2.7-6-6V86c0-3.3 2.7-6 6-6h340c3.3 0 6 2.7 6 6v340c0 3.3-2.7 6-6 6z'/></svg> ");
/*            content: url("data:image/svg+xml;charset=UTF-8, <svg xmlns='http://www.w3.org/2000/svg' version='1.1' viewBox='0 0 448 512'><path fill='green' d='M400 32H48C21.49 32 0 53.49 0 80v352c0 26.51 21.49 48 48 48h352c26.51 0 48-21.49 48-48V80c0-26.51-21.49-48-48-48zm0 400H48V80h352v352zm-35.864-241.724L191.547 361.48c-4.705 4.667-12.303 4.637-16.97-.068l-90.781-91.516c-4.667-4.705-4.637-12.303.069-16.971l22.719-22.536c4.705-4.667 12.303-4.637 16.97.069l59.792 60.277 141.352-140.216c4.705-4.667 12.303-4.637 16.97.068l22.536 22.718c4.667 4.706 4.637 12.304-.068 16.971z'/></svg>");
*/        }

        #divTrackerSteps > div.incomplete:before {
            content: url("data:image/svg+xml;charset=UTF-8, <svg xmlns='http://www.w3.org/2000/svg' version='1.1'  viewBox='0 0 448 512'><path fill='gray' d='M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm-6 400H54c-3.3 0-6-2.7-6-6V86c0-3.3 2.7-6 6-6h340c3.3 0 6 2.7 6 6v340c0 3.3-2.7 6-6 6z'/></svg> ");
/*            content: url("data:image/svg+xml;charset=UTF-8, <svg xmlns='http://www.w3.org/2000/svg' version='1.1' viewBox='0 0 448 512'><path fill='gray' d='M400 32H48C21.49 32 0 53.49 0 80v352c0 26.51 21.49 48 48 48h352c26.51 0 48-21.49 48-48V80c0-26.51-21.49-48-48-48zm0 400H48V80h352v352zm-35.864-241.724L191.547 361.48c-4.705 4.667-12.303 4.637-16.97-.068l-90.781-91.516c-4.667-4.705-4.637-12.303.069-16.971l22.719-22.536c4.705-4.667 12.303-4.637 16.97.069l59.792 60.277 141.352-140.216c4.705-4.667 12.303-4.637 16.97.068l22.536 22.718c4.667 4.706 4.637 12.304-.068 16.971z'/></svg>");
*/            filter: brightness(150%)
        }


            #divPrimaryWelcome {
                padding-right: 3%;
                margin-top: 20px;
            }
#footer {
    padding-top: 35px;
    padding-bottom: 25px;
    padding-left: 3%;
    padding-right: 5%;
    border-top: solid .5px #ddd;
    background-color: rgba(var(--theme-color),0.1);
}



#divLogo {
   text-align:right;
   margin-top:25px;
}
#divFooterLinks {
    text-align:right;
}

    #divFooterLinks a {
        margin-left: 25px;
        text-decoration: none;
        color: #999;
        font-size:.9em;
    }

        
#divDirections {
    line-height:1.4em;
    max-width:650px;
    margin-bottom:20px;

}
#divAddress {
    margin-top: 30px;
    text-align: right;
    clear: both;
}

#pageheading, #trakerHeading {
    font-size: 1.6rem;
    font-weight: bold;
    color: var(--basic-text-color);
    margin-bottom: 15px;
}

.subPageTitle {
    font-size: 1.1rem;
    font-weight:normal;
    display:block;
    margin-top:10px;
}

.ok {
    color: #378f41;
}

#pageContent {
    padding-bottom:25px;padding-top:15px; line-height:1.5rem;
}

#pageContent a, #pageContent input {
    line-height:1rem;
}
#divFooterLinks a:hover, #topBarLinks a:hover, #subMenu a:hover, #signIn:hover, #signOut:hover {
    filter: brightness(125%);
}



#divWarning, #divConfirm {
    color:white;
    white-space: nowrap;
    margin-bottom: 0px;
    margin-top:0px;
    padding:20px;
}

    #divWarning img, #divConfirm img {
        vertical-align: top;
    }

    #divWarning div, #divConfirm div {
        white-space: normal;
        width: calc(100% - 125px);
        line-height:1.5em;
    }

    #divWarning a, #divConfirm a {
        color:white;
        text-decoration:underline;
    }

#divWarning {
    background-color: #b22d00;
}

#divConfirm {
    background-color: #24a36e;
}
.warn:after {
    content: url('/Assets/Icons/warning16.png');
    width:16px;
    margin-left:10px;
    
}

#divSummary {
    column-width:225px;
    column-gap:50px;
    margin-bottom:25px;
}


    #divSummary > div {
        -webkit-column-break-inside: avoid;
        page-break-inside: avoid;
        break-inside: avoid;
        white-space:nowrap;
    }


#divSummary > div > div:first-child {
    font-size:1.4rem;
    margin-top:0px;
}


        #divSummary > div > div {
            white-space: normal;
            color: rgba(var(--basic-text-color), .7);
            font-size:.8rem;
            margin-top: 5px;
        }

.icon1 {
    width: 18px;
    height: 18px;
    vertical-align: middle;
}

.icon2 {
    width: 25px;
    height: 25px;
    vertical-align: middle;
}

.icon3 {
    width: 40px;
    height: 40px;
    vertical-align: middle;
    margin-right: 15px;
}

.hd {
    background-color: #c5c5c5;
    font-weight: bold;
    color: #000000;
}

.hd td {
    padding:10px;
}


.ch {
    font: 11px;
    color: rgba(var(--basic-text-color), .7);
    text-align: left;
    border-color: #cccccc;
    vertical-align: top;
}

    .ch a {
        font: 11px;
        color: rgba(var(--basic-text-color), .7);
    }

.aits, .aitswithhover,  table.rowdatawithhover tr:nth-child(even) {
    background-color: #f4f7ff;
}

table.rowdatawithhover {
    border-spacing:0px;
    border-collapse: separate;
    width:100%;
}
table.rowdatawithhover  td {
    padding:10px;
}

.accdata table tr td {
    padding-top:10px;
    padding-bottom:10px;
}

div.accdata div.csInput {
    padding-left:20px;
} 
    .aitswithhover:hover, .itswithhover:hover, .divlink:hover, table.rowdatawithhover tr:hover {
        background-color: #eee;
        cursor:pointer;
    }

.acchead {
    font: normal 1rem ;
    background-color: rgba(var(--theme-color),0.1);
    padding: 12px;
    padding-left: 20px;
    color: var(--basic-text-color);
    margin-top: 2px;
}

    .acchead img.plus {
        float: right;
        vertical-align: middle;
        padding-left: 10px;
    }

.accdata {
    padding: 15px;
    padding-left: 0px;
    padding-right: 0px;
    margin-bottom: 40px;
}


/* Button styling */
.button1, .button2, .button3, .csSubmit input:not([type=checkbox]):not([type=radio]) {
    padding: .5rem;
    padding-left: 15px;
    padding-right: 15px;
    border-radius: 4px;
    font-size: .9rem;
    font-weight: normal !important;
    display: inline-block;
    text-align: center;
    cursor: pointer;
    text-transform: uppercase;
    text-decoration: none;
    box-sizing: border-box;
    white-space: nowrap;
    -webkit-appearance: none;
    -webkit-border-radius: none;
}

.button1:hover, .button2:hover, .button3:hover {
    text-decoration:none;
}

.button1:focus, .button2:focus, .button3:focus {
        outline: 0;
    }

.button1 {
    min-width: 15rem;
    color: white;
    background-color: rgb(var(--highlight-button-color));
    border: 1px solid rgb(var(--highlight-button-color));
    margin-top: 20px;
    margin-bottom: 20px;
    margin-right: 20px;
}

    .button1:hover {
        background-color: rgba(var(--highlight-button-color),0.6);
        border-color: rgba(var(--highlight-button-color),0.6);
    }

    .button1:disabled {
        color: white;
        border: rgba(var(--highlight-button-color),0.6);
        background-color: rgba(var(--highlight-button-color),0.6);
        cursor: not-allowed;
    }



.button2 {
    min-width: 15rem;
    margin-top: 20px;
    margin-bottom: 20px;
    margin-right: 20px;
}

.button2, .button3 {
    color: rgb(var(--theme-color));
    background-color: white;
    border: 1px solid rgb(var(--highlight-button-color)) !important;
}

    .button2:hover, .button3:hover {
        color: white;
        background-color: rgb(var(--highlight-button-color));
    }



.altButton {
    border: 1px solid rgb(var(--theme-color));
    background-color: white;
    color: rgba(var(--theme-color))
}

    .altButton:hover {
        background-color: rgba(var(--theme-color),0.8);
        border: 1px solid rgb(var(--theme-color));
        color: white;
    }



.acclink {
    box-shadow: 2px 3px 3px 0px #ddd;
    padding: .4rem;
    border-radius: 4px;
    font-size: 1rem;
    display: inline-block;
    text-align: center;
    cursor: pointer;
    text-transform: uppercase;
    margin-top: 20px;
    margin-bottom: 20px;
    margin-right: 20px;
    border: 1px solid #bbb;
    min-width: 11rem;
    background-color: #f3f3f3;
    color: var(--basic-text-color);
    padding-left: 25px;
    padding-right: 25px;
    border: none;
}



    .acclink:hover, .acchead:hover {
        background-color: rgba(var(--theme-color),0.2);
        color: var(--basic-text-color);
        text-decoration: none;
    }

.checkout {
    background-color: #f6f6f6;
    border: solid 1px #ccc;
    margin-bottom: 40px;
    padding-left:20px;
    padding-bottom:20px;
    position: sticky;
    top: 50px;
    z-index: 100;
}

    .focusbutton {
        background-color: #f1b549
    }

.checkoutTotal {
    display: inline-block;
    float: right;
    margin-top: 25px;
    margin-right: 20px;
    font-weight:bold;
    font-size:1.2rem;
}
    .additionalInformation {
        margin-top:30px;
    }
.leaderdate {
    width: 95px;
    min-width: 95px;
    display: inline-block;
    padding-top: 10px;

}

.leader {
    width: 100%;
    margin-bottom: 4px;
    padding:0px;
    font-weight:bold;
    line-height:1rem;
}


    .leader span:first-child {
        background: white;
        padding-right:5px;
    }

.aits .leader span {
    background: #f4f7ff
}

.aitswithhover:hover span, .itswithhover:hover span {
    background: #eee;
}


.leadervalue, .leadervaluenodate {
display: inline-block;
    vertical-align: top;
    padding: 0px;
    font-size: .9rem;
    color: #444;
}
.leadervalue {
    
    min-width: 300px;
    width: calc(100% - 125px);
}

.leadervaluenodate {
    min-width:200px;
    width: 100%;
}

.sData {
    vertical-align: top;
    font: normal 1rem ;
}
tr[onclick]:not([onclick=""]).sData:hover, div[onclick]:not([onclick=""]).sData:hover {
    background-color: #eee;
    cursor: pointer;
}


table.reservationDetail  tr.heading > td {
    font-size: 1rem;
    font-weight: bold;
    padding-top:50px;
    padding-left:20px;
}

table.reservationDetail tr.heading:first-child > td {
    padding-top:0px;
}
.sData > td, div.sData {
    padding-top: 15px;
    padding-bottom: 15px;
    border-bottom: solid .5px #eee;
    line-height: 1.5rem;
}

    .sData td a, div.sData a {
        font-weight: bold;
    }

div.sData, tr.sData td:first-child {
    padding-left: 20px;
}
div.csDataLabel {
    display: inline-block;
    vertical-align: top;
    padding: 5px;
    min-width: 125px;
    font: normal 1rem ;
    color: #888;
    vertical-align: top;
}

div.csDataValue {
    display: inline-block;
    vertical-align: top;
    padding: 0px;
    font-size: 1rem;
    color: #444;
   
}
.total {
    font-weight: bold;
    font-size:1.15rem;
}

.divlink {
    padding-top:10px;
    padding-bottom:10px;
    margin-bottom:5px;
    padding-left:10px;
    display:block;
    cursor:pointer;
    background-color:#fff;
}

.notes {
    font-weight: normal;
    color: rgba(var(--basic-text-color), .7);
    font-size: .8rem;
}

.unavailable {
    font: italic .9rem ;
    color: #b22d00;
}


.sLevel1, .hd {
    font-size: 1rem ;
    font-weight:bold;
    background-color: rgb(var(--theme-color));
    color: #fff;
    margin-top: 2px;
}

    .sLevel1 td, div.sLevel1, .hd {
        padding-top: 14px;
        padding-bottom: 14px;
        padding-left: 20px;
    }

.sLevel2, .shd {
    font-size:1rem;
    font-weight:bold;
    background-color: rgba(var(--theme-color),.1);
    color: #666;
}

    .sLevel2 td, div.sLevel2, div.shd {
        padding-top: 10px;
        padding-bottom: 10px;
        padding-left: 20px;
    }

.sLevel3 {
    font-size: 1rem ;
    font-weight: bold;
    color: #666;
}

    .sLevel3 td, div.sLevel3 {
        padding-top: 35px;
        padding-bottom: 20px;
    }

/****************
    Modal Content
******************/
.modal {
    background-color: rgba(0,0,0,.3);
    left: 0px;
    top: 0px;
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 105;
    display: none;
    overflow-y: scroll;
}

.modalContent {
    background-color: white;
    border-radius: 4px;
    box-shadow: 0 0 5px 0 #444;
    left: 8%;
    padding: 25px;
    position: absolute;
    top: 100px;
    width: 80%;
    z-index: 106;
    margin-bottom: 40px;
    min-height: 250px;
}

    .modalContent h2 {
        margin-bottom: 2rem;
        font-size: 1.5rem;
    }

    .modalContent .content {
        padding-left: 10px;
    }

@media only screen and (max-width: 760px) and (orientation:portrait), (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) {
    .modalContent {
        padding: 20px;
        width: 93%;
        left: 3%
    }
}

.modalClose {
    display: inline-block;
    float: right;
    padding-right: 20px;
    cursor: pointer;
    height: 12px;
    width: 12px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' height='12' viewBox='0 0 23.935 24'%3E%3Cpath d='M23.347 116.068a1.8 1.8 0 1 1-2.539 2.539l-8.839-8.9-8.9 8.9a1.8 1.8 0 0 1-2.539-2.539l8.9-8.9L.526 98.2a1.8 1.8 0 0 1 2.539-2.539l8.9 8.972 8.9-8.9a1.8 1.8 0 1 1 2.539 2.539l-8.9 8.9Z' transform='translate(0 -95.133)' /%3E%3C/svg%3E");
    background-repeat: no-repeat;
}


@media screen and (min-width:0px) {
    .mobileOnly{
        display: normal;
    }

    #bannerMobile {
        display:block;
    }
    .fullScreen, #bannerDesktop {
        display: none;
    }

    #topLogo {
        max-height: 75px;
        margin-top: 10px;
        margin-bottom: 10px;
    }

    #topBarLinks {
        display: none;
        white-space:nowrap;
    }
    #divLanguage {
        text-align:right;
        margin-bottom:25px;
    }
    #divFooterLinks a{
        display:block;
        margin-bottom:10px;
    }
    #content, #divPrimaryWelcome, #divTrackerHeader, #divTrackerSteps, #topLogo {
        padding-left: 20px;
    }

     #divPrimaryWelcome {
         display:none;
     }

    #mainMenu {
        padding-right: 20px;
    }
    #MenuButton {
        height: 50px;
        width: 60px;
        padding-top: 3px;
    }

    #divWarning img, #divConfirm img {
        padding-right: 25px;
        border-right: none;
        margin-right: 0px;
    }
 
    #tdDivMenuButton {
        border:none;
        position:relative;
    }

    #subMenu {
        display:none;
    }


    .noncritical1 {
        display: none;
    }

    .showMobile {
        display:normal;
    }

    .divindent {
        padding-left: 0px;
        display: inline-block;
        min-width: 200px;
    }

    .shrinkMobileButton {
        padding:.2rem;
        padding-left:10px;
        padding-right:10px;
        font-size:.9rem;
    }

    #divSummary > div {
        margin-bottom: 30px;
    }
    }



@media screen and (min-width:750px) {
    #bannerMobile {
        display: none;
    }

    #bannerDesktop {
        display: block;
    }

    #topLogo {
        max-height: 150px;
        margin-top: 10px;
        margin-bottom: 10px;
    }
    a.noncritical1 {
        display: inline-block;
    }

    td.noncritical1 {
        display: table-cell
    }

    #divPrimaryWelcome {
        display:block;
    }

    .showMobile {
        display: none;
    }

    .shrinkMobileButton {
        padding: .4rem;
        padding-left: 25px;
        padding-right: 25px;
        font-size: 1rem;
    }
}

@media screen and (min-width:1000px) {
  
    .mobileOnly {
        display:none;
    }

    td.fullScreen {
        display:table-cell;
    }

    div.fullScreen {
        display:block;
    }
    .fullScreen {
        display: normal;
    }

    img.fullScreen {
        display:inline-block;
    }
    #topBarLinks {
        display: table-cell;
    }

    #divFooterLinks a {
        display: inline;
    }




    /*#tdDivMenuButton {
        border-right: solid 1px #999;
    }*/

    #subMenu {
        display:block;
    }


    #content, #divPrimaryWelcome, #divTrackerHeader, #divTrackerSteps, #topLogo, #divConfirm, #divWarning {
        padding-left: calc(2% + 50px);
        padding-right: calc(2% + 50px);
    }
    
    #mainMenu {
        padding-right: calc(2% + 50px);
    }


    #divWarning img {
        padding-right: 25px;
    }



    


    .divindent {
        padding-left:85px;

    }

    #divSummary > div {
        margin-bottom: 50px;
    }
    }

