﻿:root {    
    --rps-light-gray: #c9c7c7;
    --tt-headings-color: #003478;
    --tt-copy-color: #222222;
    --tt-links-color: #0065BD;
    --tt-navigation-color: #00234E;
    --tt-visited-link-color: #6639B7;
    --tt-tetra-tech-blue: #003478;
    --tt-black: #222222;
    --tt-cool-gray: #747678;
    --tt-accent-blue: #0065BD;
    --primary-button-bg-color: #0065BD;
    --primary-button-hover-bg-color: #003478;
    --primary-button-disabled-bg-color: #CCCCCC;
    --tt-body: #F8F8F8;
    --tt-darker-section: #EFEFF0;
    --font-family: 'Source Sans Pro', Calibri, Arial, sans-serif;
    --small-font-size: 15px;
}

html, body {
    padding: 0px;
    margin: 0px;
    background-color: var(--tt-body);
}

.small, p.small, span.small {
    font-size: var(--small-font-size);
}

a {
    color: var(--tt-links-color);
}

    a:hover {
        color: var(--tt-tetra-tech-blue);
        text-decoration: underline solid;
        text-decoration-thickness: auto;
        text-underline-offset: 4px;
        text-decoration-color: var(--tt-copy-color);
    }

    a:visited {
        color: var(--tt-visited-link-color);
    }

    a.btn-default:visited, a.btn:visited, a.btn-xs:visited, a.btn-info:visited, a.btn-group:visited {
        color: white;
    }

    a.guest-booking-type:visited {
        color: #e3e3e3;
    }

    a.guest-booking-type:hover {
        color: #fff;
    }
   

/* Pre-Navigation */
.pre-nav {
    background-color: var(--tt-black);
    color: #fff;
    padding-top: 7px;
    padding-bottom: 7px;
}

    .pre-nav p {
        font-size: 17px;
        font-family: var(--font-family);
    }

        .pre-nav p i.fas {
            position: relative;
            margin-right: 3px;
        }

/* Main Navigation */
.navi {
    background-color: transparent;
    border-bottom: 1px solid transparent;
    transition: ease-in-out 0.2s;
}

    .navi.short {
        background-color: #fff;
        padding-top: 5px;
        padding-bottom: 5px;
        box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05);
        border-color: #e3e3e3;
    }

.navbar-brand {
    max-width: 180px;
}

.navbar-nav .nav-link {
    font-family: var(--font-family);
    font-size: 17px; 15px;
    padding: 10px !important;
    color: #333;
    font-weight: 500;
}

    .navbar-nav .nav-link:hover {
        color: var(--tt-tetra-tech-blue);
    }

.navbar-toggler {
    padding: 5px;
    color: #fff;
    background-color: #333;
}


/* Home Page */
.home-header {
    padding-top: 100px;
    padding-bottom: 130px;
    background-color: rgb(227,223,212);
    border-bottom: 40px solid var(--tt-tetra-tech-blue);
    background-image: url('/img/home-header.jpg');
    background-position: center center;
    background-size: cover;
}

.hh-title {
    padding: 40px;
    background-color: rgba(255,255,255,0.9);
    border-radius: 30px;
}

.home-header div.grad {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(227,223,212);
    background: linear-gradient(90deg, rgba(227,223,212,1) 0%, rgba(227,223,212,1) 0%, rgba(0,212,255,0) 15%);
}

.img-col {
    width: 100%;
    height: 100%;
}

    .img-col img {
        object-fit: cover;
    }

.home-header h1 {
    font-family: var(--font-family);
    font-size: 55px;
    font-weight: 800;
    color: #343434;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

.home-header p.lead {
    font-size: 17px;
    font-family: var(--font-family);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

.btn-link:focus {
    text-decoration: none !important;
}

.btn.cta {
    border-radius: 25px;
    padding: 10px 20px;
    font-family: var(--font-family);
    font-size: 17px;
}

    .btn.cta.cta-lg {
        padding: 15px 25px;
        border-radius: 30px;
        font-size: 17px;
    }

.btn-primary,
.btn-primary:not(:disabled):not(.disabled):active {
    background-color: var(--primary-button-bg-color);
    border-color: var(--primary-button-bg-color);
}

    .btn-primary:disabled {
        background-color: var(--primary-button-disabled-bg-color);
        border-color: var(--primary-button-disabled-bg-color);
    }

        .btn-primary:disabled:hover {
            background-color: var(--primary-button-disabled-bg-color);
            border-color: var(--primary-button-disabled-bg-color);
        }

    .btn-primary:hover {
        background-color: var(--primary-button-hover-bg-color);
        border-color: var(--primary-button-hover-bg-color);
    }

    .btn-primary:focus,
    .btn-primary:not(:disabled):not(.disabled):active:focus {
        color: #fff;
        background-color: var(--primary-button-bg-color);
        border-color: var(--primary-button-bg-color);
    }

.home-subheader {
    padding-top: 80px;
    padding-bottom: 50px;
}

.info-card {
    padding: 25px;
    background-color: #fff;
    border: 1px solid #efefef;
    box-shadow: 0 .25rem .5rem rgba(0,0,0,.1) !important;
    margin-bottom: 30px;
    border-radius: 15px;
}

    .info-card h3 {
        text-align: center;
        font-family: var(--font-family);
        font-size: 20px;
        color: #333;
        margin-bottom: 20px;
    }

    .info-card p {
        font-family: var(--font-family);
    }

        .info-card p.lead {
            font-size: 16px;
            text-align: center;
        }

        .info-card p.small {
            color: #555;
            font-size: 12px;
        }

        .info-card p i.fas {
            font-size: 50px;
            color: #97005c;
            margin-bottom: 25px;
        }

.home-how {
    background-color: var(--tt-tetra-tech-blue);
    padding-top: 80px;
    padding-bottom: 80px;
}

    .home-how h2 {
        color: #fff;
        font-weight: 600;
        font-family: var(--font-family);
    }

/* How it Works Accordion */
#accordion .card {
    border-radius: 25px !important;
    margin-bottom: 20px;
    background-color: none !important;
}

#accordion .card-header {
    border-radius: 25px !important;
    background-color: #fff;
    padding: 10px;
    border: 0px solid transparent;
}

    #accordion .card-header h5 .btn {
        font-size: 18px;
        font-family: var(--font-family);
        font-weight: 600 !important;
        color: #333;
    }

        #accordion .card-header h5 .btn:hover {
            text-decoration: none !important;
            color: var(--tt-tetra-tech-blue);
            cursor: pointer;
        }

#accordion .card-body {
    padding: 5px 0px 10px 0px !important;
}

    #accordion .card-body.padded {
        padding: 5px 30px 30px 30px !important;
    }


/* Footer */
.footer-row {
    background-color: var(--tt-darker-section);
    padding-top: 50px;
    padding-bottom: 100px;
}

    .footer-row h5 {       
        font-size: 16px;
        font-weight: 600;
        font-family: var(--font-family);
        margin-bottom: 20px;
    }

    .footer-row p {        
        font-family: var(--font-family);
        font-size: 14px; 
    }

    .footer-row ul li {
        font-size: 14px;      
        padding-bottom: 10px;
        font-family: var(--font-family);
    }

        .footer-row ul li a {
        }

    .footer-row ul {
        margin: 0px;
        list-style: none;
        padding: 0px;
    }
    .footer-a {
        color: #fff;
        opacity: 0.5;
        font-size: 0.875rem;       
        margin-left: 8px;
        margin-right: 8px;
    }

    .footer-a:hover {
        color: #fff;
        opacity: 0.8;
        text-decoration: underline;
    }

    .footer-a:visited {
        color: #fff;
    }


.subfooter-row {
    padding-top: 20px;
    padding-bottom: 20px;
    background-color: var(--tt-black);
}


/* Inner Page */
.inner-header {
    margin-top: -115px;
    background-color: rgb(227,223,212);
    border-bottom: 10px solid var(--tt-tetra-tech-blue);
    padding-top: 140px;
}

    .inner-header h1 {
        font-family: var(--font-family);
        font-size: 50px;
        font-weight: 600;
        color: #333;
    }

.step {
    padding: 10px 15px;
    background-color: rgba(255,255,255,0.25);
    border-radius: 15px;
    font-weight: 700;
    font-family: var(--font-family);
    color: #444;
}

    .step span {
        font-weight: 400;
    }

    .step.active {
        background-color: rgba(255,255,255,0.5);
    }

        .step.active span {
            font-weight: 700;
        }

.guest-booking-type {
    position: relative;
    background-color: var(--tt-tetra-tech-blue);
    display: block;
    width: 100%;
    padding: 10px 15px 10px 75px;
    border-radius: 10px;
    border: 1px solid #e3e3e3;
    font-family: var(--font-family);
    font-size: 13px;
    color: #e3e3e3;
    transition: ease-in-out 0.2s;
}

    .guest-booking-type.coming-soon {
        background-color: var(--rps-light-gray);
    }

        .guest-booking-type.coming-soon:hover {
            box-shadow: none !important;
        }

    .guest-booking-type span {
        display: block;
        font-size: 20px;
        font-weight: 600;
        color: #fff;
    }

    .guest-booking-type i {
        position: absolute;
        top: 50%;
        transform: translateY(-55%);
        left: 20px;
        font-size: 40px;
    }

    .guest-booking-type:hover {
        color: #fff;
        text-decoration: none;
        box-shadow: 0 .25rem .5rem rgba(0,0,0,.1) !important;
    }

.booking-type-ribbon-wrapper {
    width: 100px;
    position: absolute;
    top: -1px;
    left: -43px;
}

.booking-type-ribbon {
    font-size: 11px;
    font-weight: 600;
    color: #333;
    text-transform: uppercase;
    letter-spacing: .05em;
    line-height: 15px;
    text-align: center;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(360deg);
    position: relative;
    padding: 5px 0;
    right: -32px;
    top: -14px;
    width: 130px;
    height: 25px;
    background-color: var(--yellow);
    z-index: 1010;
    box-shadow: 0 .25rem .5rem rgba(0,0,0,.6) !important;
}

    .booking-type-ribbon:before {
        left: 0;
        content: "";
        border-top: 10px solid #8e721c;
        border-left: 10px solid transparent;
        border-right: 0px solid transparent;
        position: absolute;
        bottom: -10px;
    }

    .booking-type-ribbon:after {
        right: -20px;
        bottom: 0px;
        position: absolute;
        content: "";
        border-top: 13px solid transparent;
        border-bottom: 12px solid transparent;
        border-left: 10px solid var(--yellow);
        border-right: 10px solid transparent;
    }

.booking-form h3,
.booking-form h4,
.booking-form h5 {
    font-family: var(--font-family);
    font-weight: 600;
    color: #333;
}

.booking-form h5 {
    font-size: 16px;
}

.booking-form p {
    color: #666;
    font-family: var(--font-family);
}

.bg-plum {
    background-color: var(--tt-tetra-tech-blue);
}

.control-label {
    font-family: var(--font-family);
    font-weight: 600;
    color: #333;
    font-size: 17px;
}

.form-control {
    border-radius: 15px;
}

    .form-control.reqField-error {
        border-color: #dc3545 !important;
    }

    .form-control + span.reqField-error {
        color: #dc3545;
        font-weight: 700;
        font-size: small;
    }

.timeslot,
.dateslot {
    padding: 10px;
    background-color: #e3e3e3;
    border-radius: 5px;
    text-align: center;
    width: 100%;
    font-family: var(--font-family);
    cursor: pointer;
    margin-bottom: 15px;
}

    .timeslot:hover,
    .dateslot:hover {
        background-color: #dbdbdb;
    }

    .timeslot.active,
    .dateslot.active {
        background-color: var(--tt-tetra-tech-blue);
        color: #fff;
    }

/* Guest Booking */
.booking-card {
    border-radius: 20px;
    background-color: #fff;
    border: 1px solid #e3e3e3;
    overflow: hidden;
    margin-bottom: 30px;
}

    .booking-card .head {
        border-bottom: 1px solid #e3e3e3;
        padding: 20px 20px 20px 70px;
        position: relative;
    }

        .booking-card .head h3 {
            font-family: var(--font-family);
            /*font-size: 22px;*/
            font-weight: 600;
            color: #333;
        }

        .booking-card .head p.small {
           
        }        

        .booking-card .head i.fas,
        .booking-card .head i.far {
            font-size: 30px;
            position: absolute;
            left: 23px;
            top: 32px;
            color: var(--tt-tetra-tech-blue);
        }

    .booking-card .body {
        padding: 25px 20px;
    }

p.payment {
    color: #666;
    border-bottom: 1px dotted #e3e3e3;
    font-family: var(--font-family);
}

    p.payment.total {
        border-bottom: 0px solid transparent;
        font-size: 20px;
        font-weight: 600;
    }

.booking-card ol li {
    font-family: var(--font-family);
    font-size: 17px;
    color: #666;
    margin-bottom: 5px;
}

p.bd-title,
p.bd-content {
    font-family: var(--font-family);
    color: #666;
}

p.bd-title {
    font-weight: 600;
    color: #555;
    margin-bottom: 5px;
}

p.bd-content {
    border-bottom: 1px dotted #cfcfcf;
    padding-bottom: 5px;
    margin-bottom: 20px;
}

.checkbox-row p.small {
    font-family: var(--font-family);
    color: #666;
}

/*Hide default item (value of "-") when the drop down is expanded so the user cannot select it */
option[value="-"][disabled] {
    display: none;
}

/* Contact Form */
p.contact-item {
    font-family: var(--font-family);   
    padding-left: 26px;
    position: relative;
}

    p.contact-item i.fas {
        position: absolute;
        left: 0;
        top: 4px;
        color: var(--tt-tetra-tech-blue);
    }

.footer-row p.contact-item {
    font-size: 16px;
}

    .footer-row p.contact-item i.fas {
    }

.basket-booking {
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #e3e3e3;
}

    .basket-booking p {
        font-family: var(--font-family);
        font-size: var(--small-font-size);
    }

        .basket-booking p.small {
            font-size: 12px;
        }


/* Custom Sliders */
/* The switch - the box around the slider */
.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
    float: right;
}

    /* Hide default HTML checkbox */
    .switch input {
        display: none;
    }

/* The slider */
.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
}

    .slider:before {
        position: absolute;
        content: "";
        height: 26px;
        width: 26px;
        left: 4px;
        bottom: 4px;
        background-color: white;
        -webkit-transition: .4s;
        transition: .4s;
    }

input.default:checked + .slider {
    background-color: #444;
}

input.primary:checked + .slider {
    background-color: var(--tt-tetra-tech-blue);
}

input.success:checked + .slider {
    background-color: #8bc34a;
}

input.info:checked + .slider {
    background-color: #3de0f5;
}

input.warning:checked + .slider {
    background-color: #FFC107;
}

input.danger:checked + .slider {
    background-color: #f44336;
}

input:focus + .slider {
    box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
    border-radius: 34px;
}

    .slider.round:before {
        border-radius: 50%;
    }

.feedback-btn {
    position: fixed;
    right: 0;
    bottom: 5%;
    padding: 10px 15px;
    background-color: var(--primary-button-bg-color);
    color: #fff;
    font-family: var(--font-family);
    font-size: 17px;
    cursor: pointer;
    transition: padding-right ease-in-out 0.2s;
}

    .feedback-btn i {
        margin-right: 5px;
    }

    .feedback-btn:hover {
        padding-right: 25px;
    }

#feedbackModal h5 {
    font-family: var(--font-family);
}

.feedbackRating-container {
    width: 100%;
    display: block;
    padding-left: 5%;
}

.feedbackRating-option {
    display: inline-block;
    width: 28%;
    margin-left: 1%;
    margin-right: 1%;
    text-align: center;
    background-color: #efefef;
    border-radius: 15px;
    padding: 10px 15px;
    cursor: pointer;
    font-family: var(--font-family);
}

    .feedbackRating-option i.far {
        font-size: 20px;
    }

    .feedbackRating-option:hover {
        background-color: #e3e3e3;
    }

    .feedbackRating-option.active {
        color: #fff;
        background-color: var(--tt-tetra-tech-blue);
    }

#feedbackModal p {
    font-family: var(--font-family);
    font-size: var(--small-font-size);
}

div.dataTables_wrapper div.dataTables_length label,
div.dataTables_wrapper div.dataTables_filter {
    display: none !important;
}

div.dataTables_wrapper div.dataTables_info {
    font-size: 11px;
}

.dataTables_paginate .page-link {
    font-size: 12px;
    padding: 5px 10px;
}

.dataTables_paginate li.active .page-link {
    background-color: var(--tt-tetra-tech-blue);
    border-color: var(--tt-tetra-tech-blue);
}

.dtInit thead tr {
    background-color: #efefef;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 13px
}

.dtInit tbody tr {
    font-family: var(--font-family);
    font-size: 17px;
}

.trLink {
    cursor: pointer;
}

    .trLink:hover {
        background-color: rgba(113, 0, 75, 0.1) !important;
    }

table.oh-stats {
    width: 100% !important;
    margin-top: 20px;
}

    table.oh-stats td {
        padding: 10px;
        font-size: 12px;
        font-family: var(--font-family);
    }

    table.oh-stats tr {
        border-bottom: 1px dotted #999;
    }

        table.oh-stats tr:first-child {
            background-color: #efefef;
            border-bottom: 0px solid #efefef;
            font-weight: 600;
        }

        table.oh-stats tr:last-child {
            border-bottom: 0px solid #efefef;
        }

.alert.alert-plum {
    font-family: var(--font-family);
    color: white;
    background-color: var(--tt-tetra-tech-blue);
    border-color: var(--tt-tetra-tech-blue);
}


@media (max-width:767px) {
    .cta-lg {
        width: 100% !important;
    }

    .home-header {
        padding-top: 60px;
        padding-bottom: 80px;
    }

        .home-header h1 {
            font-size: 30px;
        }

    .inner-header h1 {
        font-size: 30px;
    }

    .navbar-nav {
        padding-top: 20px;
    }

    .footer-row h5 {
        margin-top: 30px;
    }
}

/* Default Error Page Styling
-------------------------------------------------- */
.loading h1, .loading h2 {
    margin-top: 0px;
    opacity: 0;
}

.gears {
    position: relative;
    margin: 0 auto;
    width: auto;
}

.gear {
    position: relative;
    z-index: 0;
    width: 120px;
    height: 120px;
    margin: 0 auto;
    border-radius: 50%;
    background: var(--tt-tetra-tech-blue);
}

    .gear:before {
        position: absolute;
        left: 5px;
        top: 5px;
        right: 5px;
        bottom: 5px;
        z-index: 2;
        content: "";
        border-radius: 50%;
        background: #efefef;
    }

    .gear:after {
        position: absolute;
        left: 25px;
        top: 25px;
        z-index: 3;
        content: "";
        width: 70px;
        height: 70px;
        border-radius: 50%;
        border: 5px solid var(--tt-tetra-tech-blue);
        box-sizing: border-box;
        background: #efefef;
    }

    .gear.one {
        left: -130px;
    }

    .gear.two {
        top: -75px;
    }

    .gear.three {
        top: -235px;
        left: 130px;
    }

    .gear .bar {
        position: absolute;
        left: -15px;
        top: 50%;
        z-index: 0;
        width: 150px;
        height: 30px;
        margin-top: -15px;
        border-radius: 5px;
        background: var(--tt-tetra-tech-blue);
    }

        .gear .bar:before {
            position: absolute;
            left: 5px;
            top: 5px;
            right: 5px;
            bottom: 5px;
            z-index: 1;
            content: "";
            border-radius: 2px;
            background: #efefef;
        }

        .gear .bar:nth-child(2) {
            transform: rotate(60deg);
            -webkit-transform: rotate(60deg);
        }

        .gear .bar:nth-child(3) {
            transform: rotate(120deg);
            -webkit-transform: rotate(120deg);
        }

@-webkit-keyframes clockwise {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

@-webkit-keyframes anticlockwise {
    0% {
        -webkit-transform: rotate(360deg);
    }

    100% {
        -webkit-transform: rotate(0deg);
    }
}

@-webkit-keyframes clockwiseError {
    0% {
        -webkit-transform: rotate(0deg);
    }

    20% {
        -webkit-transform: rotate(30deg);
    }

    40% {
        -webkit-transform: rotate(25deg);
    }

    60% {
        -webkit-transform: rotate(30deg);
    }

    100% {
        -webkit-transform: rotate(0deg);
    }
}

@-webkit-keyframes anticlockwiseErrorStop {
    0% {
        -webkit-transform: rotate(0deg);
    }

    20% {
        -webkit-transform: rotate(-30deg);
    }

    60% {
        -webkit-transform: rotate(-30deg);
    }

    100% {
        -webkit-transform: rotate(0deg);
    }
}

@-webkit-keyframes anticlockwiseError {
    0% {
        -webkit-transform: rotate(0deg);
    }

    20% {
        -webkit-transform: rotate(-30deg);
    }

    40% {
        -webkit-transform: rotate(-25deg);
    }

    60% {
        -webkit-transform: rotate(-30deg);
    }

    100% {
        -webkit-transform: rotate(0deg);
    }
}

.gear.one {
    -webkit-animation: anticlockwiseErrorStop 2s linear infinite;
}

.gear.two {
    -webkit-animation: anticlockwiseError 2s linear infinite;
}

.gear.three {
    -webkit-animation: clockwiseError 2s linear infinite;
}

.loading .gear.one, .loading .gear.three {
    -webkit-animation: clockwise 3s linear infinite;
}

.loading .gear.two {
    -webkit-animation: anticlockwise 3s linear infinite;
}

