﻿
/* christmas lights start */

/* Control panel */
:root {
    /* Speed – tweak these to slow down/speed up each color */
    --flash-base: 4s; /* red */
    --flash-fast: 3.5s; /* green */
    --flash-medium: 4.5s; /* blue */
    --flash-slow: 5s; /* yellow */
    --flash-slower: 6s; /* orange */
    /* C9-style colors */
    /* 1: Red */
    --light-1-color: #ff4b3a;
    --light-1-dim-color: rgba(255, 75, 58, 0.4);
    --light-1-glow: #ff4b3a;
    --light-1-dim-glow: rgba(255, 75, 58, 0.2);
    /* 2: Green */
    --light-2-color: #2ecc71;
    --light-2-dim-color: rgba(46, 204, 113, 0.4);
    --light-2-glow: #2ecc71;
    --light-2-dim-glow: rgba(46, 204, 113, 0.2);
    /* 3: Blue */
    --light-3-color: #3498db;
    --light-3-dim-color: rgba(52, 152, 219, 0.4);
    --light-3-glow: #3498db;
    --light-3-dim-glow: rgba(52, 152, 219, 0.2);
    /* 4: Yellow */
    --light-4-color: #ffd166;
    --light-4-dim-color: rgba(255, 209, 102, 0.4);
    --light-4-glow: #ffd166;
    --light-4-dim-glow: rgba(255, 209, 102, 0.2);
    /* 5: Orange */
    --light-5-color: #ff9f1c;
    --light-5-dim-color: rgba(255, 159, 28, 0.4);
    --light-5-glow: #ff9f1c;
    --light-5-dim-glow: rgba(255, 159, 28, 0.2);
}

.lightrope {
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    position: absolute;
    z-index: 1;
    margin: -15px 0 0 0;
    padding: 0;
    pointer-events: none;
    width: 100%;
}

    .lightrope li {
        position: relative;
        -webkit-animation-fill-mode: both;
        animation-fill-mode: both;
        -webkit-animation-iteration-count: infinite;
        animation-iteration-count: infinite;
        list-style: none;
        margin: 0;
        padding: 0;
        width: 12px;
        height: 28px;
        border-radius: 50%;
        margin: 20px;
        display: inline-block;
        /* default: red */
        background: var(--light-1-color);
        box-shadow: 0px 4.6666666667px 24px 3px var(--light-1-glow);
        -webkit-animation-name: flash-1;
        animation-name: flash-1;
        -webkit-animation-duration: var(--flash-base);
        animation-duration: var(--flash-base);
    }

        /* 2nd in each group of 5 – green */
        .lightrope li:nth-child(5n+2) {
            background: var(--light-2-color);
            box-shadow: 0px 4.6666666667px 24px 3px var(--light-2-glow);
            -webkit-animation-name: flash-2;
            animation-name: flash-2;
            -webkit-animation-duration: var(--flash-fast);
            animation-duration: var(--flash-fast);
        }

        /* 3rd – blue */
        .lightrope li:nth-child(5n+3) {
            background: var(--light-3-color);
            box-shadow: 0px 4.6666666667px 24px 3px var(--light-3-glow);
            -webkit-animation-name: flash-3;
            animation-name: flash-3;
            -webkit-animation-duration: var(--flash-medium);
            animation-duration: var(--flash-medium);
        }

        /* 4th – yellow */
        .lightrope li:nth-child(5n+4) {
            background: var(--light-4-color);
            box-shadow: 0px 4.6666666667px 24px 3px var(--light-4-glow);
            -webkit-animation-name: flash-4;
            animation-name: flash-4;
            -webkit-animation-duration: var(--flash-slow);
            animation-duration: var(--flash-slow);
        }

        /* 5th – orange */
        .lightrope li:nth-child(5n+5) {
            background: var(--light-5-color);
            box-shadow: 0px 4.6666666667px 24px 3px var(--light-5-glow);
            -webkit-animation-name: flash-5;
            animation-name: flash-5;
            -webkit-animation-duration: var(--flash-slower);
            animation-duration: var(--flash-slower);
        }

        .lightrope li:before {
            content: "";
            position: absolute;
            background: #222;
            width: 10px;
            height: 9.3333333333px;
            border-radius: 3px;
            top: -4.6666666667px;
            left: 1px;
        }

        .lightrope li:after {
            content: "";
            top: -14px;
            left: 9px;
            position: absolute;
            width: 52px;
            height: 18.6666666667px;
            border-bottom: solid #222 2px;
            border-radius: 50%;
        }

        .lightrope li:last-child:after {
            content: none;
        }

        .lightrope li:first-child {
            margin-left: -40px;
        }

    /* turn off flashing completely */
    .lightrope.lightrope-static li {
        -webkit-animation: none !important;
        animation: none !important;
    }


/* RED */
@-webkit-keyframes flash-1 {
    0%, 100% {
        background: var(--light-1-color);
        box-shadow: 0px 4.6666666667px 24px 3px var(--light-1-glow);
    }

    50% {
        background: var(--light-1-dim-color);
        box-shadow: 0px 4.6666666667px 24px 3px var(--light-1-dim-glow);
    }
}

@keyframes flash-1 {
    0%, 100% {
        background: var(--light-1-color);
        box-shadow: 0px 4.6666666667px 24px 3px var(--light-1-glow);
    }

    50% {
        background: var(--light-1-dim-color);
        box-shadow: 0px 4.6666666667px 24px 3px var(--light-1-dim-glow);
    }
}

/* GREEN */
@-webkit-keyframes flash-2 {
    0%, 100% {
        background: var(--light-2-color);
        box-shadow: 0px 4.6666666667px 24px 3px var(--light-2-glow);
    }

    50% {
        background: var(--light-2-dim-color);
        box-shadow: 0px 4.6666666667px 24px 3px var(--light-2-dim-glow);
    }
}

@keyframes flash-2 {
    0%, 100% {
        background: var(--light-2-color);
        box-shadow: 0px 4.6666666667px 24px 3px var(--light-2-glow);
    }

    50% {
        background: var(--light-2-dim-color);
        box-shadow: 0px 4.6666666667px 24px 3px var(--light-2-dim-glow);
    }
}

/* BLUE */
@-webkit-keyframes flash-3 {
    0%, 100% {
        background: var(--light-3-color);
        box-shadow: 0px 4.6666666667px 24px 3px var(--light-3-glow);
    }

    50% {
        background: var(--light-3-dim-color);
        box-shadow: 0px 4.6666666667px 24px 3px var(--light-3-dim-glow);
    }
}

@keyframes flash-3 {
    0%, 100% {
        background: var(--light-3-color);
        box-shadow: 0px 4.6666666667px 24px 3px var(--light-3-glow);
    }

    50% {
        background: var(--light-3-dim-color);
        box-shadow: 0px 4.6666666667px 24px 3px var(--light-3-dim-glow);
    }
}

/* YELLOW */
@-webkit-keyframes flash-4 {
    0%, 100% {
        background: var(--light-4-color);
        box-shadow: 0px 4.6666666667px 24px 3px var(--light-4-glow);
    }

    50% {
        background: var(--light-4-dim-color);
        box-shadow: 0px 4.6666666667px 24px 3px var(--light-4-dim-glow);
    }
}

@keyframes flash-4 {
    0%, 100% {
        background: var(--light-4-color);
        box-shadow: 0px 4.6666666667px 24px 3px var(--light-4-glow);
    }

    50% {
        background: var(--light-4-dim-color);
        box-shadow: 0px 4.6666666667px 24px 3px var(--light-4-dim-glow);
    }
}

/* ORANGE */
@-webkit-keyframes flash-5 {
    0%, 100% {
        background: var(--light-5-color);
        box-shadow: 0px 4.6666666667px 24px 3px var(--light-5-glow);
    }

    50% {
        background: var(--light-5-dim-color);
        box-shadow: 0px 4.6666666667px 24px 3px var(--light-5-dim-glow);
    }
}

@keyframes flash-5 {
    0%, 100% {
        background: var(--light-5-color);
        box-shadow: 0px 4.6666666667px 24px 3px var(--light-5-glow);
    }

    50% {
        background: var(--light-5-dim-color);
        box-shadow: 0px 4.6666666667px 24px 3px var(--light-5-dim-glow);
    }
}

/* christmas lights end */






































/* skip link at the top of the masterpage */
.skip-link {
    position: absolute;
    left: -10000px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

    .skip-link:focus {
        position: absolute;
        left: 6px;
        top: 7px;
        z-index: 999999;
        width: auto;
        height: auto;
        overflow: visible;
        outline: 3px solid #000;
        background: #fff;
        padding: 10px;
        text-decoration: none;
        color: #000;
    }

.system-notification a {
    color: #ffffff !important; /* Makes link text white */
    text-decoration: underline !important; /* Underlines the link text */
    font-weight: 600 !important;
}

.additional_information {
    border: 1px;
    border-style: solid;
    border-color: #dedede;
}

    .additional_information td {
        padding: 6px !important;
    }

.comment_textbox {
    width: 100% !important;
    max-width: 500px;
    height: 62px;
}

.email_body_textbox {
    width: 100% !important;
    max-width: 500px;
    height: 200px;
}

/* for lighthouse */
.RadForm_Silk {
    background-color: transparent !important;
}

.RadGrid_Silk .rgInfoPart strong {
    color: #3e3e3e !important;
}

.RadGrid_Telerik .rgInfoPart {
    color: #000 !important;
}

.RadGrid_Simple .rgInfoPart {
    color: #000 !important;
}

.details_table {
    border-spacing: 0px;
}

    .details_table td {
        padding: 6px;
    }

.RadEditor table.reLayoutWrapper td {
    padding: 0;
}

/*dumb width error with rad editors in html view*/
.RadEditor .rfdTextInput, .rfdTextarea textarea {
    width: 100% !important;
}

.main_table {
    width: 100%;
    border-color: #FFF;
    /* not for sure why this has a border at all - adam - 2/12/2025 */
    /*border-width: 1px;*/
    border-width: 0;
    border-style: solid;
    border-spacing: 0px;
}

    .main_table td {
        padding: 6px;
    }

.main_table_padding_blitz td {
    padding: 20px;
}

.table_padding_only {
    border-spacing: 0px;
}

    .table_padding_only td {
        padding: 6px;
    }

/*.approved_balances_table {
    border: 1px;
    border-style: solid;
    border-color: #818181;
    background-color: White;
    border-spacing: 0px;
}

    .approved_balances_table td {
        padding: 2px;
    }*/

.approved_balances_table {
    border: 1px;
    border-style: solid;
    border-color: #D1D5DB;
    background-color: White;
    border-spacing: 0px;
}

    .approved_balances_table td {
         padding-top: 2px;
        padding-bottom:2px;
        padding-left:4px;
        padding-right:4px;
    }

hr {
    border: none;
    border-top: 3px double #d9d9d9;
    color: #d9d9d9;
    overflow: visible;
    text-align: center;
    height: 5px;
    margin-top: 1.25rem;
    margin-bottom: 1.25rem;
}

    hr:after {
        background: #fff;
        content: '§';
        padding: 0 4px;
        position: relative;
        top: -10px;
    }

.error {
    color: #cc0000 !important;
}

.required {
    height: 16px;
    width: 16px;
    border: none 0px #000000;
}

.details_wrapper {
    background-color: #F4F5F1;
    border-color: #818181;
    border-width: 1px;
    border-style: solid;
    width: 100%;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 10px;
}

.content_wrapper {
    width: 100%;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 10px;
}

.asset_image {
    border: 1px solid #818181 !important;
    /*padding: 1px;*/
}

.workshop_image {
    float: right;
    margin-left: 8px;
    border: 1px solid #818181 !important;
    padding: 1px;
    margin-bottom: 8px;
}

.icon_text_link {
    display: inline-block;
    /*padding-bottom: 10px;*/
}

    .icon_text_link .icon {
        padding-right: 7px;
    }

    /* hack to make it work with links being inline-block */
    .icon_text_link:hover {
        text-decoration: underline !important;
    }

::placeholder {
    opacity: .4;
}

.responsive_width_130 {
    width: 130px !important;
}

.responsive_width_149 {
    width: 149px !important;
}

.responsive_width_150 {
    width: 150px !important;
}

.responsive_width_200 {
    width: 200px !important;
}

.responsive_width_250 {
    width: 250px !important;
}

.responsive_width_300 {
    width: 300px !important;
}

.responsive_width_350 {
    width: 350px !important;
}

.responsive_width_400 {
    width: 400px !important;
}

.responsive_width_450 {
    width: 450px !important;
}

.responsive_width_500 {
    width: 500px !important;
}

.responsive_width_650 {
    width: 650px !important;
}

.responsive_width_rad_editor {
    width: 650px !important;
}

.responsive_shown_700px {
    display: none !important;
}

@media screen and (max-width: 700px) {
    .responsive_width_130 {
        width: 100px !important;
    }

    .responsive_width_149 {
        width: 100px !important;
    }

    .responsive_width_150 {
        width: 100px !important;
    }

    .responsive_width_200 {
        width: 150px !important;
    }

    .responsive_width_250 {
        width: 150px !important;
    }

    .responsive_width_300 {
        width: 200px !important;
    }

    .responsive_width_350 {
        width: 200px !important;
    }

    .responsive_width_400 {
        width: 200px !important;
    }

    .responsive_width_450 {
        width: 200px !important;
    }

    .responsive_width_500 {
        width: 200px !important;
    }

    .responsive_width_650 {
        width: 300px !important;
    }

    .responsive_width_rad_editor {
        width: 100% !important;
    }

    .required {
        display: none;
    }

    /* hides the filter row on the rad grids for small screens */
    .RadGrid_Silk .rgFilterRow {
        display: none;
    }

    .RadGrid_Bootstrap .rgFilterRow {
        display: none;
    }

    .label:after {
        content: "" !important;
    }

    .main_table_padding_blitz td {
        padding: 6px;
    }

    .responsive_hidden_700px {
        display: none !important;
    }

    .responsive_shown_700px {
        display: inline !important;
    }

    .responsive_width_100_percent_at_700px {
        width: 100% !important;
    }


    /* remove some of the card padding when on a mobile device */
    .card-body {
        padding-top: 5px !important;
        padding-right: 5px !important;
        padding-bottom: 5px !important;
        padding-left: 5px !important;
    }

    .content {
        /*padding-top: 0px !important;*/
        padding-right: 10px !important;
        /*padding-bottom: 0px !important;*/
        padding-left: 10px !important;
    }
}

@media (min-width:992px) {
    .account_image {
        /*   float: right;
        margin-right: 11px;*/
    }
}





@media screen and (max-width: 1400px) {
    .responsive_hidden_1400px {
        display: none !important;
    }
}


/* used on the login page */
@media screen and (max-width: 1200px) {
    .responsive_hidden_1200px {
        display: none !important;
    }

    .responsive_width_100_percent_at_1200px {
        width: 100% !important;
    }
}








.account_image {
    border: solid 1px #818181;
    /*border: solid 2px #000;
    border-bottom-right-radius: calc(0.5rem - 1px);
    border-bottom-left-radius: calc(0.5rem - 1px);
    border-top-left-radius: calc(0.5rem - 1px);
    border-top-right-radius: calc(0.5rem - 1px);*/
}

.clear_floats {
    clear: both;
}

.rad_list_box_200px {
    width: 200px !important;
}

.rad_list_box_225px {
    width: 225px !important;
}

.rad_list_box_250px {
    width: 250px !important;
}

.rad_list_box_400px {
    width: 400px !important;
}




.rad_list_box_table {
    border-spacing: 0px;
}

    .rad_list_box_table td {
        padding: 6px;
    }

@media screen and (max-width: 700px) {
    .rad_list_box_200px {
        width: 100% !important;
    }

    .rad_list_box_225px {
        width: 100% !important;
    }

    .rad_list_box_250px {
        width: 100% !important;
    }


    .rad_list_box_400px {
        width: 100% !important;
    }


    .rad_list_box_table {
        width: 100%;
    }
}








/* ************************************************************** headings ************************************************************** */

h1, h2, h3, h4, h5, h6 {
    margin-top: 0;
    margin-bottom: .625rem
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    margin-bottom: .625rem;
    font-weight: 400;
    line-height: 1.5715
}

.h1, h1 {
    font-size: 1.625rem
}

.h2, h2 {
    font-size: 1.5rem
}

.h3, h3 {
    font-size: 1.375rem
}

.h4, h4 {
    font-size: 1.25rem
}

.h5, h5 {
    font-size: 1.125rem
}

.h6, h6 {
    font-size: 1rem
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    letter-spacing: -.015em
}




