﻿:root {
    /* Custom Tokens */
    --size-width-page: 984px; /* 960px + container padding */
    --color-primary-darker: #771895;
    --color-secondary-darker: #f7d009;
    --color-background-input-base: var(--bs-gray-100);
    --color-background-input-hover: var(--color-background-input-base);
    --color-background-input-focus: var(--color-background-input-base);
    --box-shadow-focus: 0 0 0 0.1rem rgba(var(--input-btn-focus-shadow-rgb), 1);
    --font-family-theme: "Roboto Condensed", sans-serif;
    --font-family-headings: inherit;
    --size-font-small: 12px;
    /* Bootstrap Tokens */
    /* Colors */
    --bs-gray-100: #f7f7f7;
    --bs-gray-300: #eee;
    --bs-gray-400: #c9caca;
    --bs-gray-500: #999999;
    --bs-gray-600: #666666;
    --bs-gray-700: #444444;
    --bs-gray-800: #333333;
    --bs-gray-800: #333333;
    --bs-light: var(--bs-gray-100);
    --bs-light-rgb: 247, 247, 247;
    --bs-dark: var(--bs-black);
    --bs-dark-rgb: 0, 0, 0;
    --bs-primary: #6b2c91;
    --bs-primary-rgb: 107, 44, 145;
    --bs-primary-bg-subtle: rgba(var(--bs-primary-rgb), 0.2);
    --bs-secondary: #ffd500;
    --bs-secondary-rgb: 255, 213, 0;
    --bs-secondary-bg-subtle: rgba(var(--bs-secondary-rgb), 0.2);
    --bs-success: #5bb75b;
    --bs-success-bg-subtle: rgba(var(--bs-success-rgb), 0.2);
    --bs-info: #49afcd;
    --bs-info-bg-subtle: rgba(var(--bs-info-rgb), 0.2);
    --bs-warning: #faa732;
    --bs-warning-bg-subtle: rgba(var(--bs-warning-rgb), 0.2);
    --bs-danger: #d14c3f;
    --bs-danger-bg-subtle: #ffe3e3;
    --bs-body-color: var(--bs-gray-800);
    --bs-link-color: var(--bs-primary);
    --bs-link-color-rgb: var(--bs-primary-rgb);
    --bs-link-hover-color: var(--bs-link-color);
    --bs-link-hover-color-rgb: var(--bs-link-color-rgb);
    --bs-border-color: var(--bs-gray-400);
    --input-btn-focus-shadow-rgb: var(--bs-black-rgb);
    /* Fonts */
    --bs-font-sans-serif: "Lucida Grande", Lucida, Verdana, sans-serif;
    --bs-body-font-size: 14px;
    /* Borders */
    --bs-border-radius: 0;
    --bs-border-width: 2px;
}

/******************
  
  BASE STYLES

********************/

@font-face {
    font-family: "Roboto Condensed";
    src: url('fonts/robotocondensed-regular-webfont.eot');
    src: url('fonts/robotocondensed-regular-webfont.eot?#iefix') format('embedded-opentype'), url('fonts/robotocondensed-regular-webfont.woff') format('woff'), url('fonts/robotocondensed-regular-webfont.ttf') format('truetype'), url('fonts/robotocondensed-regular-webfont.svg#roboto_condensedbold') format('svg');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: "Roboto Condensed";
    src: url('fonts/robotocondensed-light-webfont.eot');
    src: url('fonts/robotocondensed-light-webfont.eot?#iefix') format('embedded-opentype'), url('fonts/robotocondensed-light-webfont.woff') format('woff'), url('fonts/robotocondensed-light-webfont.ttf') format('truetype'), url('fonts/robotocondensed-light-webfont.svg#roboto_condensedbold') format('svg');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: "Roboto Condensed";
    src: url('fonts/robotocondensed-bold-webfont.eot');
    src: url('fonts/robotocondensed-bold-webfont.eot?#iefix') format('embedded-opentype'), url('fonts/robotocondensed-bold-webfont.woff') format('woff'), url('fonts/robotocondensed-bold-webfont.ttf') format('truetype'), url('fonts/robotocondensed-bold-webfont.svg#roboto_condensedbold') format('svg');
    font-weight: 700;
    font-style: normal;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
legend {
    font-family: var(--font-family-headings);
    font-weight: 700;
}

h1,
.h1 {
    --bs-heading-color: #000000;
    font-family: inherit;
    font-weight: 300;
}

/* Forms */
legend {
    font-family: var(--font-family-theme);
    font-size: 1rem;
    margin: 0;
    text-transform: uppercase;
}

input::placeholder {
    font-style: italic;
    color: var(--bs-gray-500);
    text-transform: uppercase;
}

input:focus::placeholder {
    color: var(--bs-gray-700);
    opacity: 0.5;
}

/******************
  
  COMPONENT STYLES

********************/

/* 
    Buttons

    1.  jQuery UI styles `inputs` and `buttons` within `.ui-widget` which has a higher specificity
        than Bootstrap's `.btn` class, so styles are being overwritten. Instead of using `!important`
        I have simply bumped the specificity by doubling up the `.btn` classname.
    
    2.  Doubling the classname alone doesn't do anything without having to annoyingly re-apply the button styles
        so we can guarantee the styles won't be overwritten.
*/

.btn.btn { /* 1 */
    --bs-btn-padding-x: 1rem;
    --bs-btn-padding-y: 0.5rem;
    --bs-btn-font-size: 18px;
    --bs-btn-line-height: 20px;
    --bs-btn-font-weight: 700;
    --bs-btn-font-family: var(--font-family-theme);
    /* 2 */
    display: inline-block;
    padding: var(--bs-btn-padding-y) var(--bs-btn-padding-x);
    font-family: var(--bs-btn-font-family);
    font-size: var(--bs-btn-font-size);
    font-weight: var(--bs-btn-font-weight);
    line-height: var(--bs-btn-line-height);
    color: var(--bs-btn-color);
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    border: var(--bs-btn-border-width) solid var(--bs-btn-border-color);
    border-radius: var(--bs-btn-border-radius);
    background-color: var(--bs-btn-bg);
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    text-transform: uppercase;
}

.btn:focus-visible {
    --bs-btn-focus-box-shadow: var(--box-shadow-focus);
}

.btn-primary {
    --bs-btn-bg: var(--bs-primary);
    --bs-btn-border-color: var(--bs-btn-bg);
    --bs-btn-color: var(--bs-secondary);
    /* :hover */
    --bs-btn-hover-bg: var(--color-primary-darker);
    --bs-btn-hover-color: var(--bs-btn-color);
    --bs-btn-hover-border-color: var(--bs-btn-hover-bg);
    /* :active */
    --bs-btn-active-bg: var(--bs-btn-hover-bg);
    --bs-btn-active-color: var(--bs-btn-color);
    --bs-btn-active-border-color: var(--bs-btn-active-bg);
}

.btn-secondary {
    --bs-btn-bg: var(--bs-secondary);
    --bs-btn-border-color: var(--bs-btn-bg);
    --bs-btn-color: var(--bs-primary);
    /* :hover */
    --bs-btn-hover-bg: var(--color-secondary-darker);
    --bs-btn-hover-color: var(--bs-btn-color);
    --bs-btn-hover-border-color: var(--bs-btn-hover-bg);
    /* :active */
    --bs-btn-active-bg: var(--bs-btn-hover-bg);
    --bs-btn-active-color: var(--bs-btn-color);
    --bs-btn-active-border-color: var(--bs-btn-active-bg);
}

.btn-dark {
    --bs-btn-bg: var(--bs-dark);
    --bs-btn-border-color: var(--bs-btn-bg);
}

.btn-close {
    --bs-btn-close-focus-shadow: var(--box-shadow-focus);
}

/* Alerts*/
.alert-error {
    display: none;
    margin: 1rem 0;
}

/* Forms */
label[for],
label.radio,
label.checkbox {
    cursor: pointer;
}
.control-group {
    position: relative;
    margin-bottom: 1rem;
}

.form-label {
    margin: 0;
    font-weight: 700;
}

.form-control {
    background-color: var(--color-background-input-base);
    font-family: var(--font-family-theme);
    font-weight: 700;
}

.form-control:hover {
    background-color: var(--color-background-input-hover);
}

.form-control:focus {
    background-color: var(--color-background-input-focus);
    border-color: var(--bs-border-color);
    box-shadow: var(--box-shadow-focus);
}

/* Validation */
input:required,
input:required:hover,
input:required:focus,
input[data-required="true"],
input[data-required="true"]:hover,
input[data-required="true"]:focus,
select:required,
select:required:hover,
select:required:focus,
select[data-required="true"],
select[data-required="true"]:hover,
select[data-required="true"]:focus,
textarea:required,
textarea:required:hover,
textarea:required:focus,
textarea[data-required="true"],
textarea[data-required="true"]:hover,
textarea[data-required="true"]:focus
.form-control.required,
.form-control.required:hover,
.form-control.required:focus,
.form-select.required,
.form-select.required:hover,
.form-select.required:focus {
    border-color: var(--bs-secondary);
}

.error.error,
.parsley-error.parsley-error,
.parsley-error.parsley-error:hover,
.parsley-error.parsley-error:focus {
    background-color: var(--bs-danger-bg-subtle);
    border-color: var(--bs-form-invalid-border-color);
}

/* Master Styles */
.master-header,
.master-main,
.master-footer {
    width: 100%;
    max-width: var(--size-width-page);
    margin: 0 auto;
}

/* Header */
.master-header {
    padding-top: 1.5rem;
}

.master-header__heading {
    font-family: "PT Sans", sans-serif;
    font-weight: 700;
    font-size: 27px;
    letter-spacing: -.03em;
    margin: 0;
}

.master-header__heading a {
    text-decoration: none;
    color: #662579;
}

/* Nav */
.master-nav {
    padding: 1.5rem 5%;
    font-size: var(--size-font-small);
}

.master-nav > .row {
    row-gap: 1rem;
}

.master-nav li {
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--bs-border-color);
}

@media (min-width: 992px) {
    .master-nav {
        background-color: var(--bs-light);
    }

    .master-nav > .row {
        row-gap: 3rem;
    }

    .master-nav li {
        padding-bottom: 0;
        border: none;
    }
}

.master-nav img {
    width: 22px;
}

.master-nav a {
    display: inline-block;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1.2em;
    font-weight: 700;
    text-decoration: none;
    border-bottom: 2px solid currentColor;
}

/* Main */
.master-main {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

/* Footer */
.master-footer {
    font-size: var(--size-font-small);
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    color: var(--bs-gray-600);
    border-top: 1px solid var(--bs-gray-400);
}

.master-footer a {
    --bs-link-color-rgb: 102, 102, 102;
}

.master-footer a:not(:hover) {
    text-decoration: none;
}


/* OLD CSS */
.Top {
    background-color: var(--bs-primary);
    border: 1px solid #333;
    border-radius: 5px 0 0;
    bottom: 0;
    color: #fff;
    cursor: pointer;
    display: none;
    font-size: .8em;
    opacity: .9;
    padding: .9em;
    position: fixed;
    right: 0;
    text-align: center;
    text-transform: lowercase;
    width: 10.7em;
    z-index: 100;
}

.parsley-error-list:before /*Arrow*/ {
    border: 7px solid transparent;
    border-right-color: #2e2e2e;
    content: "";
    display: block;
    height: 0;
    left: -14px;
    position: absolute;
    top: 21px;
    width: 0;
}

.parsley-error-list /*Error*/ {
    background: #2e2e2e;
    color: #fff;
    font-size: 1em;
    left: 100%;
    margin: 0 0 0 15px;
    *margin-left: 40px;
    opacity: .95;
    padding: 20px;
    position: absolute;
    top: -10px;
    width: 60%;
    z-index: 1;
}

@media (max-width: 768px) {
    #Kx .long-error .parsley-error-list {
        width: 100%!important;
    }

    .parsley-error-list {
        background: #2e2e2e;
        color: #fff;
        font-size: 1em;
        left: 100%;
        margin: auto;
        opacity: .95;
        padding: 10px;
        position: unset;
        top: -10px;
        width: 100%;
        z-index: 1;;
        margin-top:10px;
    }
}
    .parsley-error-list li {
        list-style-type: none;
       /* margin-bottom: 10px;*/
    }

/* Styled Radios */
.styled-radio {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
    padding: 0.5rem 0;
    width: 100%;
    align-items: center;
    justify-content: flex-end;
}

    .styled-radio .controls {
        display: inline-flex;
        flex-direction: row;
        gap: 1rem;
    }

    .styled-radio label {
        font-family: var(--font-family-theme);
        font-size: 1.25em;
        font-weight: 700;
    }

    .styled-radio .control-label {
        color: var(--bs-primary);
    }

    /*.styled-radio .radio {
color: #767676;
}*/

    .styled-radio .keyboard-focused {
        outline: thin solid var(--bs-secondary);
    }

    .styled-radio .selected {
        color: var(--bs-primary);
    }


/*Datepicker*/
.ui-datepicker {
    border-radius: 0;
    margin-top: .5em;
}

.ui-widget-content, .ui-state-hover, .ui-widget-header .ui-state-hover {
    border: 1px solid #555;
}

    .ui-widget-header .ui-state-hover .ui-icon, .ui-widget-header .ui-icon {
        background-image: url(images/ui-icons_ffffff_256x240.png);
    }

.ui-state-default .ui-icon {
    float: right;
}

.ui-datepicker-header .ui-state-hover {
    background: none;
    border: 1px solid #fff;
    border-radius: 0;
    cursor: pointer;
    height: 1.7em;
}

.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default {
    border: 1px solid var(--bs-primary);
    color: #555;
}

.ui-state-highlight, .ui-widget-content .ui-state-highlight {
    background-color: #003f77;
    color: var(--bs-primary);
}

.ui-widget-header {
    border-radius: 0;
    border: 1px solid var(--bs-primary);
    background: var(--bs-primary);
    color: #fff;
}

.ui-datepicker td a.ui-state-active {
    border: none;
    padding: 2px 5px 2px 2px;
}

.ui-state-default, .ui-widget-content .ui-state-default {
    background: #e6e6e6;
    border: none;
}

.ui-datepicker .ui-datepicker-next {
    right: 1px;
}

.ui-datepicker .ui-datepicker-prev {
    left: 1px;
}

.ui-datepicker .ui-datepicker-prev, .ui-datepicker .ui-datepicker-next {
    top: 2px;
}

    .ui-datepicker .ui-datepicker-prev.ui-state-hover, .ui-datepicker .ui-datepicker-next.ui-state-hover {
        top: 3px;
    }

.ui-datepicker-calendar .ui-state-default.ui-state-hover, .ui-state-active, .ui-widget-content .ui-state-active {
    background: var(--bs-primary);
    border-color: var(--bs-primary);
    color: #fff;
}


/* Hub Accordion */
.Hub .ui-accordion-header {
    background: #f0f0f0;
    background: linear-gradient(to bottom, #fff, #f0f0f0);
    border: 0;
    border-radius: 0;
    color: #9b9193;
    cursor: pointer;
    font-family: "Roboto Condensed";
    font-size: 1.167em;
    font-weight: 700;
    line-height: 3.3em;
    margin: 0;
    padding: 0;
    padding-left: 50px;
    position: relative;
    text-transform: uppercase;
}

    .Hub .ui-accordion-header.ui-state-active {
        background: #fefefe;
        color: #2a2a2a;
    }

    .Hub .ui-accordion-header.Disabled {
        cursor: default;
        cursor: not-allowed;
        opacity: 0.5;
    }

    .Hub .ui-accordion-header .ui-icon {
        background-image: url(images/ui-icons_888888_256x240.png);
        display: block;
        left: 18px;
        opacity: 0.9;
        position: absolute;
        top: 17px;
    }

    .Hub .ui-accordion-header.Complete .ui-icon {
        background-position: -64px -144px;
    }

    .Hub .ui-accordion-header.Disabled .ui-icon {
        display: none;
    }

    .Hub .ui-accordion-header.ui-state-active .ui-icon {
        background: url(images/accordion-active.png) no-repeat 0 0;
        height: 17px;
        left: 16px;
        opacity: 1;
        width: 19px;
    }

.Hub .ui-accordion-content {
    background: #f0f0f0;
        border: 0;
        border-radius: 0;
        padding: 0 1.5em 1.5em 50px;
    }

    .Hub .ui-accordion-header.ui-state-active + .ui-accordion-content {
        background: #fff;
        background: linear-gradient(to bottom, #fff, #f0f0f0);
    }


    /* Applications Progress Bar */
    [role="progressbar"].Beads {
        --color-beads-bar: var(--bs-gray-400);
        --color-beads-incomplete: var(--color-beads-bar);
        --color-beads-active: var(--bs-primary);
        --color-beads-complete: var(--bs-secondary);
        background: var(--color-beads-bar);
        height: 100%;
        max-height: 60rem;
        min-height: 30em;
        left: 1.667em;
        margin: 0;
        padding: 0;
        padding-top: 5em;
        position: relative;
        width: var(--bs-border-width);
        z-index: 2;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

        [role="progressbar"].Beads:after {
            background: linear-gradient(to bottom, var(--bs-body-bg), transparent);
            content: "";
            display: block;
            height: 10em;
            left: -2em;
            position: absolute;
            top: 0;
            width: 4em;
            z-index: 2;
        }

        [role="progressbar"].Beads > * {
            background-color: #696969;
            border-radius: 50%;
            color: #fff;
            font-family: var(--font-family-theme);
            font-size: 1.167em;
            font-weight: 700;
            height: 1.429em;
            left: -0.643em;
            line-height: 1.429em;
            margin-bottom: 0.75rem;
            margin-left: 0;
            position: relative;
            text-align: center;
            width: 1.429em;
        }

        [role="progressbar"].Beads .Current ~ * {
            background-color: var(--color-beads-complete);
            color: #595858;
        }

        [role="progressbar"].Beads .Current {
            background-color: var(--color-beads-active);
            font-size: 1.333em;
            height: 1.875em;
            line-height: 1.875em;
            left: -0.875em;
            width: 1.875em;
        }

        [role="progressbar"].Beads .Home {
            background: var(--color-beads-complete) url(../images/2013/ui/home-icon.png) no-repeat 50% 45%;
            border: 0;
            bottom: 0;
            height: 2.857em;
            left: -1.357em;
            line-height: 2.857em;
            margin: 0;
            overflow: hidden;
            *text-indent: -9999px;
            width: 2.857em;
        }

    [role="progressbar"][aria-valuenow="0"].Beads {
        background: transparent;
    }

        [role="progressbar"][aria-valuenow="0"].Beads .Home {
            margin-top: -2.857em;
            top: 50%;
        }

    /* Preferences */
    #PageAside #PrefText,
    #PageAside #ConfirmPreferences,
    #PageAside[data-basket-state] #MaxPreferenceInfo,
    #PageAside #RemainingPreferencesInfo,
    #PageAside[data-basket-state] #MaxPreferenceInfo,
    .Preferences .FilteredOut,
    .Carousel .CarouselNext[disabled]:after {
        display: none;
    }

    #PageAside[data-basket-state] #RemainingPreferencesInfo {
        display: block;
    }

    #PageAside[data-basket-state="max"] #RemainingPreferencesInfo {
        display: none;
    }

    #PageAside #Basket {
        font-family: var(--font-family-theme);
        font-weight: 700;
        text-transform: uppercase;
        font-size: 0.875rem;
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        margin-bottom: 2rem;
    }

        #PageAside #Basket > li {
            background-color: var(--bs-light);
            padding: 0.5rem 1.5rem;
            display: flex;
            flex-direction: row;
            gap: 1rem;
            justify-content: space-between;
            align-items: center;
        }

        #PageAside #Basket .PreferenceNumber {
            background-color: var(--bs-secondary);
            border-radius: 100%;
            display: inline-block;
            font-size: 1.25rem;
            height: 1.25em;
            line-height: 1.25em;
            text-align: center;
            width: 1.25em;
        }

    .newNum-1::before {
        content: "1";
        color: black;
    }

    .newNum-2::before {
        content: "2";
        color: black;
    }

    .newNum-3::before {
        content: "3";
        color: black;
    }

    .newNum-4::before {
        content: "4";
        color: black;
    }

    .newNum-5::before {
        content: "5";
        color: black;
    }

    .newNum-6::before {
        content: "6";
        color: black;
    }

    .newNum-7::before {
        content: "7";
        color: black;
    }

    #PageAside #Basket .PreferenceDetails .Price {
        color: var(--bs-primary);
        display: inline-block;
        margin-left: 0.5rem;
    }

    #PageAside #Basket .RemovePreference img {
        display: block;
    }

    .Preferences .PreferencesList .AreaCard {
        background: var(--bs-gray-300);
        padding: 1rem;
        transition: .5s background;
        position: relative;
    }

    .btn.pref-selector {
        --color-background: var(--bs-gray-600);
        font-size: 0.875rem;
        width: 3rem;
        height: 3rem;
        background-color: var(--color-background);
        color: white;
        border-radius: 100%;
        text-transform: none;
        padding: 0;
    }

        .btn.pref-selector.Active {
            --color-background: var(--bs-secondary);
            font-size: 1.25rem;
        }

    /* Room Tabs */
    .MoreInfoTabs.ui-tabs {
        border: none;
        padding: 0;
        margin: 0;
    }

    .MoreInfoTabs .ui-tabs-nav {
        padding: 0;
        background: none;
        border-color: transparent;
        display: flex;
    }

        .MoreInfoTabs .ui-tabs-nav .ui-tabs-tab {
            flex: 1;
            background-color: var(--bs-gray-600);
            margin: 0;
            color: white;
            border-radius: 0;
            text-align: center;
            font-family: var(--font-family-theme);
            text-transform: uppercase;
            font-weight: 700;
        }

        .MoreInfoTabs .ui-tabs-nav .ui-tabs-anchor {
            display: block;
            float: none;
            color: white;
        }

        .MoreInfoTabs .ui-tabs-nav .ui-tabs-tab[aria-selected="true"] {
            background-color: white;
        }

    .MoreInfoTabs .ui-tabs-tab[aria-selected="true"] > .ui-tabs-anchor {
        color: var(--bs-primary);
    }

    @media (max-width: 768px) {
        #MoreInfoTabs ul {
            flex-direction: column;
            align-items: stretch;
        }
    }

    .FacilitiesPane ul {
        column-count: 3;
        column-width: 150px;
        column-gap: 1.5rem;
        margin-left: 0;
        line-height: 2rem;
    }

        .FacilitiesPane ul > li::marker {
            content: "\2714\0020";
            color: green;
        }

    /* Carousel */
    .Carousel {
        height: 110px;
        padding: 0 30px;
        position: relative;
        width: 100%;
        *width: 85%;
    }

        .Carousel button {
            height: 100%;
            position: absolute;
            top: 0;
            width: 50px;
            z-index: 1;
            padding: 0;
            border: none;
        }

            .Carousel button .img-replace {
                background: url(images/carousel-sprite.png) no-repeat;
                display: block;
                height: 40px;
                margin-top: -20px;
                margin-left: -5px;
                left: 50%;
                position: absolute;
                top: 50%;
                width: 10px;
            }

            .Carousel button[disabled] {
                cursor: default;
                cursor: not-allowed;
            }

        .Carousel .CarouselPrev {
            left: -20px;
        }

        .Carousel .CarouselNext {
            right: -20px;
        }

        .Carousel .CarouselPrev .img-replace {
            background-position: 0 0;
        }

        .Carousel .CarouselNext .img-replace {
            background-position: -10px 0;
        }

        .Carousel .CarouselPrev[disabled] .img-replace {
            background-position: -20px 0;
        }

        .Carousel .CarouselNext[disabled] .img-replace {
            background-position: -30px 0;
        }

        .Carousel .CarouselNext:after {
            content: "";
            display: block;
            height: 100%;
            left: -20px;
            position: absolute;
            top: 0;
            width: 20px;
        }

        .Carousel .CarouselNext[disabled]:after {
            display: none;
        }

        .Carousel .CarouselFrame {
            height: 100%;
            overflow: hidden;
            width: 100%;
        }

        .Carousel .CarouselContent {
            font-size: 0;
            height: 100%;
            position: relative;
            white-space: nowrap;
        }

        .Carousel a {
            display: inline-block;
            height: 100%;
            position: relative;
        }

            .Carousel a + a {
                margin-left: 10px;
            }

            .Carousel a img {
                display: block;
                height: 100%;
                min-height: 100%;
            }

            .Carousel a:hover:after {
                background: url(images/zoom-icon.png) no-repeat 0 0;
                content: "";
                display: block;
                height: 46px;
                left: 50%;
                margin-top: -23px;
                margin-left: -22px;
                position: absolute;
                top: 50%;
                width: 45px;
            }



    /******************
  
  UTILITY STYLES

********************/
    .font-brand {
        font-family: "Roboto Condensed" !important;
    }

    .text-small {
        font-size: var(--size-font-small) !important;
    }

    .hide {
        display: none !important;
    }

    .show {
        display: block !important;
    }

    .img-replace {
        background-color: transparent;
        border: 0;
        overflow: hidden;
        *text-indent: -9999px;
    }

        .img-replace:before {
            content: "";
            display: block;
            width: 0;
            height: 150%;
        }

/* Contracts */
table.paymentradio {
    width: 100%;
    border-collapse: collapse;
    margin: 10px 0;
    table-layout: auto; 
}

    table.paymentradio td {
        padding: 10px;
        word-wrap: break-word;
    }

table.paymentradio {
    border: none;
}

table.paymentradio tr {
    display: flex;
    flex-wrap: wrap; 
}

table.paymentradio label {
    display: inline!important;
    padding-left: 10px;
}

@media (max-width: 600px) {
    table.paymentradio {
        display: block;
        overflow-x: auto;
    }

    table.paymentradio td {
        display: block;
        width: 100%;
        margin-bottom: 10px;
    }

    table.paymentradio label {
        display: inline;
        margin-top: 5px;
        padding-left: 10px;
    }
}

.indCheckboxes, .inventorytext {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.indCheckboxes label[for], .inventorytext label[for] {
    padding-left: 10px;
    display: inline;
}

.checkbox-item, .inventorytext {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.checkbox-item label {
    flex: 1;
    word-wrap: break-word;
}

@media (max-width: 768px) {
    .checkbox-item {
        flex-direction: column; 
        align-items: flex-start;
    }
}

@media print {
    header, btn btn-primary, btn btn-seconadary, .master-header, input,
    footer,
    button,
    .no-print {
        display: none !important;
    }
}

/* Checkbox and Radios */
.form-check {
    margin-top: 0.5rem;
}

.form-check label {
    margin-bottom: 0.75rem;
}

.form-check label:last-child {
    margin-bottom: 0;
}

.form-check input[type="checkbox"]:not(.form-check-input),
.form-check input[type="radio"]:not(.form-check-input) {
    margin-top: 0.35em;
    float: left;
    margin-left: -1.5em;
}

.form-group {
    overflow-wrap: break-word;
}

.form-group + .form-group {
    margin-top: 1rem;
}

.form-group legend {
    font-family: var(--bs-body-font-family);
    font-weight: normal;
    text-transform: none;
    font-size: 14px;
    margin-bottom: 1em;
}