/******************************************************
 * CSS override for CloudCraze.
 * Override any CSS provided by OOTB CloudCraze below
*******************************************************/
@import url('https://fonts.googleapis.com/css?family=Roboto:300,400,500,700');

:root {

    /*-----COLORS-----*/

    /*----COLOR DEFINITIONS----    */

    --colorPrimaryBlack: #000000;
    --colorPrimaryWhite: #ffffff;

    --colorPrimaryRed: #e50000;
    --colorStepRed--100: #ffabab;
    --colorStepRed--200: var(--colorPrimaryRed);
    --colorStepRed--300: #d80000;
    --colorStepRed--400: #ac0000;
    --colorStepRed--500: #910000;
    --colorStepRed--600: #780000;
    --colorStepRed--700: #5e0000;

    --colorPrimaryBlue: #4a5767;
    --colorStepBlue--50: #e2eaf3;
    --colorStepBlue--100: #a2b5cc;
    --colorStepBlue--150: #6e8199;
    --colorStepBlue--200: #var(--colorPrimaryBlue);
    --colorStepBlue--250: #4a5767;
    --colorStepBlue--300: #424e5c;
    --colorStepBlue--400: #37414d;
    --colorStepBlue--500: #242b33;

    --colorPrimaryGreen: #23826F;
    --colorStepGreen--100: #abded4;
    --colorStepGreen--200: var(--colorPrimaryGreen);
    --colorStepGreen--300: #378676;
    --colorStepGreen--400: #207866;
    --colorStepGreen--500: #1f7261;
    --colorStepGreen--600: #195e51;
    --colorStepGreen--700: #13453b;

    --colorPrimaryLightBlue: #006ba8;
    --colorStepLightBlue--100: #79caf2;
    --colorStepLightBlue--200: #4cbeff;
    --colorStepLightBlue--250: #199ae4;
    --colorStepLightBlue--300: var(--colorPrimaryLightBlue);
    --colorStepLightBlue--400: #2d86b3;
    --colorStepLightBlue--500: #005688;
    --colorStepLightBlue--600: #1a4d66;
    --colorStepLightBlue--700: #5c6c80;

    --colorPrimaryGray: #e4e4e4;
    --colorStepGray--100: #eee;
    --colorStepGray--200: var(--colorPrimaryGray);
    --colorStepGray--300: #ddd;
    --colorStepGray--400: #ccc;
    --colorStepGray--500: #a1a1a1;
    --colorStepGray--600: #898989;
    --colorStepGray--650: #767676;
    --colorStepGray--700: #666;
    --colorStepGray--800: #555;
    --colorStepGray--900: #333;
    --colorStepGray--1000: #222;

    --colorPrimaryOrange: #ff8d2e;
    --colorStepOrange--100: #ffc694;
    --colorStepOrange--200: var(--colorPrimaryOrange);
    --colorStepOrange--300: #cc7025;
    --colorStepOrange--400: #cc7025;
    --colorStepOrange--500: #99630c;

    --colorPrimaryCyan: #5fe9ea;
    --colorStepCyan--100: var(--colorPrimaryCyan);
    --colorStepCyan--200: #099c9d;
    --colorStepCyan--300: #074849;

    --colorPrimaryLimeGreen: #b0ea3b;
    --colorStepLimeGreen--100: #d4e5b1;
    --colorStepLimeGreen--200: #bfe573;
    --colorStepLimeGreen--300: var(--colorPrimaryLimeGreen);
    --colorStepLimeGreen--400: #8ed600;
    --colorStepLimeGreen--500: #7ebd00;
    --colorStepLimeGreen--600: #6f991c;
    --colorStepLimeGreen--700: #577c10;
    --colorStepLimeGreen--800: #446600;
    --colorStepLimeGreen--900: #334c00;
    --colorStepLimeGreen--1000: #2e3d10;
    --colorStepLimeGreen--1100: #223300;

    --colorPrimaryPurple: #804f92;
    --colorStepPurple--100: #d0abde;
    --colorStepPurple--200: var(--colorPrimaryPurple);
    --colorStepPurple--300: #53335e;

    /*-----STATE COLORS-----*/
    --colorInfo: var(--colorStepBlue--200);
    --colorActive: #0275b0;

    --colorSuccess: #5e8120;
    --colorSuccess--dark: #506e1b;
    --colorSuccess__text: #55761b;

    /*Border color for components that have messaging (where text will be the brown color).*/
    /*Can also be used as the color for icons when a border around the icon is not present e.g. warning icons in Tables that are not inside .spark-table__status-wrapper*/
    --colorWarning__border: #cd8511;

    --colorWarning__text: #99541c; /*For use when text is on white background*/
    --colorWarning__text--dark: #663812; /*For use when text is on yellow background*/
    --colorWarning__background: #f9b646; /*For use with components that have messaging and text color is brown*/

    --colorDanger: var(--colorStepRed--400);
    --colorDanger--dark: var(--colorStepRed--500);

    /*-----GENERAL COLORS-----*/
    --colorBody: var(--colorStepGray--900);
    --colorBody__background: var(--colorStepGray--200);
    --colorBody--alt: var(--colorPrimaryWhite);
    --colorCaption: #bdc8cc;
    --colorHeading: var(--colorStepBlue--200);
    --colorFocusBlue: var(--colorStepBlue--100);
    --colorFooterIcon: var(--colorStepGray--650);
    --colorFooterLink: #9d9d9d;

    /*-----BUTTON COLORS- WORK IN PROGRESS!!! ----*/

    /*DEFAULT*/
    --btnDefault__background-color: var(--colorStepGreen--400);
    --btnDefault__border-color: var(--colorStepGreen--600);
    --btnDefault__shadow: var(--colorStepGreen--600);
    --btnDefault__text: var(--colorPrimaryWhite);

    --btnDefault__background-color--hover: var(--colorStepGreen--400);
    --btnDefault__border-color--hover: var(--colorStepGreen--600);
    --btnDefault__shadow--hover: var(--colorStepGreen--100);
    --btnDefault__text--hover: var(--colorPrimaryWhite);

    --btnDefault__background-color--active: var(--colorStepGreen--600);
    --btnDefault__border-color--active: var(--colorStepGreen--700);
    --btnDefault__shadow--active: var(--colorStepGreen--100);
    --btnDefault__text--active: var(--colorPrimaryWhite);

    --btnDefault__background-color--disabled: var(--colorStepGray--100);
    --btnDefault__border-color--disabled: var(--colorStepGray--100);
    --btnDefault__text--disabled: var(--colorStepGray--600);

    /*PRIMARY*/
    --btnPrimary__background-color: var(--colorStepGreen--200);
    --btnPrimary__border-color: var(--colorStepGreen--600);
    --btnPrimary__shadow: var(--colorStepGreen--600);
    --btnPrimary__text: var(--colorPrimaryWhite);

    --btnPrimary__background-color--hover: var(--colorStepGreen--400);
    --btnPrimary__border-color--hover: var(--colorStepGreen--600);
    --btnPrimary__shadow--hover: var(--colorStepGreen--100);
    --btnPrimary__text--hover: var(--colorPrimaryWhite);

    --btnPrimary__background-color--active: var(--colorStepGreen--600);
    --btnPrimary__border-color--active: var(--colorStepGreen--700);
    --btnPrimary__shadow--active: var(--colorStepGreen--100);
    --btnPrimary__text--active: var(--colorPrimaryWhite);

    --btnPrimary__background-color--disabled: var(--colorStepGray--100);
    --btnPrimary__border-color--disabled: var(--colorStepGray--100);
    --btnPrimary__text--disabled: var(--colorStepGray--600);

    --colorStarFill: #ec6b22;
    --colorStarNone: #d4d4d4;

    /*---- PRODUCT COLORS ----*/
    --itemCart__border-color: var(--colorStepGray--400);

    /*---- ORDER ITEM PCC STATUSES COLORS ----*/
    --oipcc__status--incomplete: #B3740E;
    --oipcc__status--complete: #63871A;

    /*----EASING DEFINITIONS----*/

    /*// Cubic*/
    --ease-in-cubic: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    --ease-out-cubic: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    --ease-in-out-cubic: cubic-bezier(0.645, 0.045, 0.355, 1.000);

    /*// Circ*/
    --ease-in-circ: cubic-bezier(0.600, 0.040, 0.980, 0.335);
    --ease-out-circ: cubic-bezier(0.075, 0.820, 0.165, 1.000);
    --ease-in-out-circ: cubic-bezier(0.785, 0.135, 0.150, 0.860);

    /*// Expo*/
    --ease-in-expo: cubic-bezier(0.950, 0.050, 0.795, 0.035);
    --ease-out-expo: cubic-bezier(0.190, 1.000, 0.220, 1.000);
    --ease-in-out-expo: cubic-bezier(1.000, 0.000, 0.000, 1.000);

    /*// Quad*/
    --ease-in-quad: cubic-bezier(0.550, 0.085, 0.680, 0.530);
    --ease-out-quad: cubic-bezier(0.250, 0.460, 0.450, 0.940);
    --ease-in-out-quad: cubic-bezier(0.455, 0.030, 0.515, 0.955);

    /*// Quart*/
    --ease-in-quart: cubic-bezier(0.895, 0.030, 0.685, 0.220);
    --ease-out-quart: cubic-bezier(0.165, 0.840, 0.440, 1.000);
    --ease-in-out-: cubic-bezier(0.770, 0.000, 0.175, 1.000);

    /*// Quint*/
    --ease-in-quint: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    --ease-out-quint: cubic-bezier(0.230, 1.000, 0.320, 1.000);
    --ease-in-out-quint: cubic-bezier(0.860, 0.000, 0.070, 1.000);

    /*// Sine*/
    --ease-in-sine: cubic-bezier(0.470, 0.000, 0.745, 0.715);
    --ease-out-sine: cubic-bezier(0.390, 0.575, 0.565, 1.000);
    --ease-in-out-sine: cubic-bezier(0.445, 0.050, 0.550, 0.950);

    /*// Back*/
    --ease-in-back: cubic-bezier(0.600, -0.280, 0.735, 0.045);
    --ease-out-back: cubic-bezier(0.175, 0.885, 0.320, 1.275);
    --ease-in-out-back: cubic-bezier(0.680, -0.550, 0.265, 1.550);

    /*------ FONT SIZES -----*/

    --font-root: 100%;      /* 12px */

    --f-eta: 1rem;          /* @12px = 12px */
    --f-zeta: 1.25rem;      /* @12px = 15px */
    --f-epsilon: 1.5rem;    /* @12px = 18px */
    --f-delta: 1.75rem;     /* @12px = 21px */
    --f-gamma: 2rem;        /* @12px = 24px */
    --f-beta: 2.5rem;       /* @12px = 30px */
    --f-alpha: 3.25rem;     /* @12px = 39px */
    --f-mega: 4rem;         /* @12px = 48px */

    /*----- SPACING -----*/
    --spaceXS: 0.16666rem;  /* @12px = 2px */
    --spaceSM: 0.33333rem;  /* @12px = 4px */
    --spaceMD: 0.66666rem;  /* @12px = 8px */
    --spaceLG: 1.33333rem;  /* @12px = 16px */
    --spaceXL: 1.66666rem;  /* @12px = 20px */
    --spaceXXL: 2rem;       /* @12px = 24px */
    --spaceXXX: 2.66666rem; /* @12px = 32px */
    --spaceXXXX: 3.33333rem;/* @12px = 40px */

    /*----- PADDING/MARGIN DEFINITIONS -----*/
    --padding--0: 0;
    --padding--1: var(--spaceMD);
    --padding--2: var(--spaceLG);
    --padding--3: var(--spaceXL);
    --padding--4: var(--spaceXXL);
    --margin--0: 0;
    --margin--1: var(--spaceMD);
    --margin--2: var(--spaceLG);
    --margin--3: var(--spaceXL);
    --margin--4: var(--spaceXXL);
}

/*@media only screen and (max-width: 48rem) {
    :root {
        !*------ FONT SIZES -----*!
        --font-root: 100%; !* 16px *!
    }
}*/

@media (min-width: 1200px), (min-width: 992px) {
    .container {
        width: 96% !important;
    }
}

/*----- PADDING/MARGIN HELPERS -----*/
    .p-0 {padding: var(--padding--0) !important;}
    .p-1 {padding: var(--padding--1) !important;}
    .p-2 {padding: var(--padding--2) !important;}
    .p-3 {padding: var(--padding--3) !important;}
    .p-4 {padding: var(--padding--4) !important;}
    .pt-0 {padding-top: var(--padding--0) !important;}
    .pt-1 {padding-top: var(--padding--1) !important;}
    .pt-2 {padding-top: var(--padding--2) !important;}
    .pt-3 {padding-top: var(--padding--3) !important;}
    .pt-4 {padding-top: var(--padding--4) !important;}
    .pr-0 {padding-right: var(--padding--0) !important;}
    .pr-1 {padding-right: var(--padding--1) !important;}
    .pr-2 {padding-right: var(--padding--2) !important;}
    .pr-3 {padding-right: var(--padding--3) !important;}
    .pr-4 {padding-right: var(--padding--4) !important;}
    .pb-0 {padding-bottom: var(--padding--0) !important;}
    .pb-1 {padding-bottom: var(--padding--1) !important;}
    .pb-2 {padding-bottom: var(--padding--2) !important;}
    .pb-3 {padding-bottom: var(--padding--3) !important;}
    .pb-4 {padding-bottom: var(--padding--4) !important;}
    .pl-0 {padding-left: var(--padding--0) !important;}
    .pl-1 {padding-left: var(--padding--1) !important;}
    .pl-2 {padding-left: var(--padding--2) !important;}
    .pl-3 {padding-left: var(--padding--3) !important;}
    .pl-4 {padding-left: var(--padding--4) !important;}

    .m-0 {margin: var(--margin--0) !important;}
    .m-1 {margin: var(--margin--1) !important;}
    .m-2 {margin: var(--margin--2) !important;}
    .m-3 {margin: var(--margin--3) !important;}
    .m-4 {margin: var(--margin--4) !important;}
    .mt-0 {margin-top: var(--margin--0) !important;}
    .mt-1 {margin-top: var(--margin--1) !important;}
    .mt-2 {margin-top: var(--margin--2) !important;}
    .mt-3 {margin-top: var(--margin--3) !important;}
    .mt-4 {margin-top: var(--margin--4) !important;}
    .mr-0 {margin-right: var(--margin--0) !important;}
    .mr-1 {margin-right: var(--margin--1) !important;}
    .mr-2 {margin-right: var(--margin--2) !important;}
    .mr-3 {margin-right: var(--margin--3) !important;}
    .mr-4 {margin-right: var(--margin--4) !important;}
    .mb-0 {margin-bottom: var(--margin--0) !important;}
    .mb-1 {margin-bottom: var(--margin--1) !important;}
    .mb-2 {margin-bottom: var(--margin--2) !important;}
    .mb-3 {margin-bottom: var(--margin--3) !important;}
    .mb-4 {margin-bottom: var(--margin--4) !important;}
    .ml-0 {margin-left: var(--margin--0) !important;}
    .ml-1 {margin-left: var(--margin--1) !important;}
    .ml-2 {margin-left: var(--margin--2) !important;}
    .ml-3 {margin-left: var(--margin--3) !important;}
    .ml-4 {margin-left: var(--margin--4) !important;}

    .m-auto {margin: auto !important;}
    .mt-auto {margin-top: auto !important;}
    .mr-auto {margin-right: auto !important;}
    .mb-auto {margin-bottom: auto !important;}
    .ml-auto {margin-left: auto !important;}

    .d-inline-block {display:inline-block!important;}
    .d-block {display:block!important;}
    .d-flex {display:flex!important;}
    .align-items-center {align-items: center!important;}
    .justify-content-between {justify-content: space-between!important;}
    .flex-wrap {flex-wrap:wrap!important;}
    .flex-grow {flex-grow:1!important;}
    .flex-column {flex-direction: column!important;}
    .font-weight-500 {font-weight:500!important;}
    .no-border {border:0!important;}
    .w-100 {width:100%!important;}

.cc_content_body > span {
    width: 100%;
}
.cc_content_body a,
.text-link {
    color: var(--colorPrimaryLightBlue);
    font-weight: 300;
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-bottom-color: transparent;
    transition: color 150ms, background-color 150ms, padding-bottom 150ms, border-bottom 150ms;
    transition-duration: .1s;
    transition-property: background-color, color, border-color, box-shadow;
    transition-timing-function: ease-in-out;
    outline: none;
}
.text-link, .toggleHistories {
    cursor: pointer;
}
.text-link:hover,
.text-link:focus,
.text-link:active {
    text-decoration: none;
    border-bottom-color: var(--colorPrimaryLightBlue);
    color: var(--colorPrimaryLightBlue);
    z-index: 10;
}
.text-link:focus,
.btn.btn-link:focus {
    box-shadow: 0 0 0 2px var(--colorPrimaryWhite), 0 0 0 6px var(--colorFocusBlue);
    border-radius: 0.0625rem;
    border-bottom: 0;
    outline: none;
}
.text-link:active {
    color: var(--colorStepLightBlue--600);
    border-bottom-color: var(--colorStepLightBlue--600);
}

.no-display {
    display: none;
}


/*----- FORM ELEMENTS -----*/

.cc_content_body .form-group label,
.modal-body .form-group label {
    font-size: var(--f-eta);
    /*letter-spacing: 0.05rem;*/
    line-height: 1.5rem;
    color: var(--colorStepGray--900);
    font-weight: 300;
    margin-bottom: 0;
    margin-top: 0;
    display: flex;
}
label.additionalInfo.questionLabel {
    font-size: 16px;
    line-height: 1.5rem;
    color: var(--colorStepGray--900);
    font-weight: bold;
    margin-bottom: 8px;
    margin-top: 0;
    display: initial;
}
.questionLabel {
    font-size: 1.16666rem !important;
}
label.additionalInfo.answerLabel {
    font-size: 1.33333rem;
}
.summaryInfo {
    margin-bottom: 40px;
}
.cc_content_body .form-group .form-control {
    padding-left: 2rem;
    padding-right: 2rem;
    margin: 0;
    width: 100%;
}
.cc_content_body .slds-combobox__form-element .slds-input {
    cursor: pointer;
}
.cc_content_body .slds-combobox__form-element.slds-input-has-icon_right .slds-icon-utility-down {
    display: block;
    transform: translateY(-50%);
}
.cc_content_body .slds-combobox__form-element.slds-input-has-icon_right .slds-input__icon-group .slds-icon_container {
    display: block;
    top: 0;
    transform: translateY(0);
}
.cc_content_body .slds-pill_container {
    border: 0;
    background-color: transparent;
    position: absolute;
    top: 3rem;
}
.cc_content_body .slds-pill_container .slds-pill.slds-pill_link {
    background-color: var(--colorStepBlue--250);
    color: rgb(255, 255, 255);
}
.cc_content_body .slds-pill_container .slds-pill__action {
    border-width: 0;
}
.cc_content_body .slds-pill_container .slds-pill.slds-pill_link .slds-button {
    color: rgb(255, 255, 255);
}
.cc_content_body .slds-combobox__form-element + .slds-dropdown {
    top: 3rem;
}
.cc_content_body .slds-radio_button-group {
    display: flex;
}
.cc_content_body .slds-button.slds-radio_button {
    flex: 1 0 auto;
    display: flex;
}
.cc_content_body .slds-radio_button > input[type="radio"] + .slds-radio_button__label {
    flex: 1 0 auto;
    text-align: center;
}
.addAnotherAlternateContactBtn {
    color: var(--colorPrimaryLightBlue);
    font-weight: 300 !important;
}
.cc_content_body .slds-input,
.cc_content_body .slds-form-element__control.itemBody,
.modal-body .slds-form-element__control .input,
.modal-body .slds-form-element__control .select,
.modal-body .slds-form-element__control .selected,
.cc_content_body .form-group .form-control {
    font-weight: 300;
    font-size: 1.33333rem;
    padding: 0.5rem 0.75rem;
    margin-bottom: 1rem;
    border-radius: .1875rem;
    height: 3rem;
}
.cc_content_body .form-group .form-control[type='checkbox'],
.cc_content_body .form-group .form-control[type='radio'],
.cc_content_body .form-inline .form-control[type='checkbox'],
.cc_content_body .form-inline .form-control[type='radio'] {
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}
.cc_content_body .input-group {
    margin-bottom: 1rem;
    width: 100%;
}
.cc_content_body .input-group .form-control {
    margin-bottom: 0;
}
.cc_content_body .input-group .form-control:first-child,
.cc_content_body .input-group-addon:first-child,
.cc_content_body .input-group-btn:first-child > .btn,
.cc_content_body .input-group-btn:first-child > .btn-group > .btn,
.cc_content_body .input-group-btn:first-child > .dropdown-toggle,
.cc_content_body .input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle),
.cc_content_body .input-group-btn:last-child > .btn-group:not(:last-child) > .btn {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    background-color: var(--colorPrimaryWhite);
}
.cc_content_body .input-group .form-control:last-child,
.cc_content_body .input-group-addon:last-child,
.cc_content_body .input-group-btn:last-child > .btn,
.cc_content_body .input-group-btn:last-child > .btn-group > .btn,
.cc_content_body .input-group-btn:last-child > .dropdown-toggle,
.cc_content_body .input-group-btn:first-child > .btn:not(:first-child),
.cc_content_body .input-group-btn:first-child > .btn-group:not(:first-child) > .btn {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    background-color: var(--colorPrimaryWhite);
}

.cc_content_body .slds-form-element.slds-form-element_readonly .itemBody {
    padding: 0;
}
.cc_content_body .form-group .form-control[type='text']::placeholder,
.modal-body .form-group .form-control[type='text']::placeholder {
    color: rgba(118, 118, 118, 0);
    font-weight: 300;
    font-size: 1rem;
    transition: color 150ms;
}
.cc_content_body .form-group .form-control[type='text']:focus::placeholder,
.modal-body .form-group .form-control[type='text']:focus::placeholder {
    color: rgba(118, 118, 118, 1);
}
.cc_content_body .form-group .form-control:focus,
.cc_content_body .form-inline .form-control:focus,
.modal-body .slds-form-element__control .input:focus,
.modal-body .slds-form-element__control .select:focus,
.modal-body .slds-form-element__control .select:active,
.cc_content_body .slds-combobox__form-element .slds-input:focus,
.cc_content_body .slds-combobox__form-element .slds-input:active {
    border-color: var(--colorStepGray--900);
    background-color: var(--colorStepGray--100);
    box-shadow: none;
}
.cc_content_body .form-group.dropdown {
    border: 0;
    margin: 0;
    padding: 0;
}
.cc_content_body .form-group.dropdown .dropdown-toggle .form-text {
    font-weight: 400;
    font-size: 1rem;
    line-height: 1rem;
}
.cc_content_body .form-group.dropdown .dropdown-menu {
    top: 2.5rem;
    margin: 0;
}
.cc_content_body .form-group.dropdown .addDropdownItem > * {
    padding: 0.5rem 1rem;
    cursor: pointer;
    display: block;
    font-size: 1rem;
}
.cc_content_body .form-group.dropdown .addDropdownItem > *:hover {
    text-decoration: none;
    background-color: var(--colorStepGray--200);
    z-index: 10;
}
.cc_content_body .form-group.dropdown .addDropdownItem > *:focus {
    box-shadow: 0 0 0 2px var(--colorPrimaryWhite), 0 0 0 6px var(--colorFocusBlue);
    border-radius: 0.0625rem;
    border-bottom: 0;
    outline: none;
}
.cc_content_body .form-group.dropdown .addDropdownItem > *:active {
    background-color: var(--colorStepBlue--250);
    color: var(--colorPrimaryWhite);
}
.cc_content_body .form-group.dropdown .addDropdownItem .checkbox {
    margin-right: var(--margin--2);
}
select#UserField2.ccSabre-select {
    width: 100%;
}
.pccListRows select {
    height: 34px;
    margin: 0;
    border-radius: 4px;
}

.termsAndConditions {
    font-family: Arial, sans-serif;
    font-size: 9pt;
    color: rgb(62, 62, 60)
}
/* ------------------------ */

.navbar-inverse {
    border-top: 4px solid var(--colorDanger);
    background-color: var(--colorStepGray--1000);
    height: 71px;
}
.navbar-default {
    background-color: var(--colorPrimaryWhite);
}
.panel-default > .panel-heading {
    background-color: var(--colorPrimaryWhite);
    border-color: transparent;
    padding: var(--padding--1);
}
.cc_deskLayout {
    background-color: var(--colorPrimaryGray);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
.cc_content_body {
    flex: 1 0 auto;
    display: flex;
}
.panel-group.cc_categories_side_container {
    background-color: var(--colorPrimaryWhite);
    margin-top: 20px;
}
.cc_category_tree {
    border-color: transparent;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}
/* ---- HEADER ----- */

.sabre_container {
    border-top: 0 solid var(--colorDanger);
    background-color: transparent;
    height: 71px;
    padding-left: 0;
    padding-right: 0;
}
.sabre_navbar_inverse {
    background-color: transparent;
    border-color: transparent;
    border-top: none;
}
.sabre_navbar_row {
    background-color: var(--colorPrimaryBlack);;
    margin-right: 0;
    margin-left: 0;
    height: 100%;
    padding-top: 20px;
}
.sabre_navbar_list_acct {
    margin-right: 0;
    margin-left: 0;
    padding-right: 0;
    padding-left: 0;
}
.sabre_menu_container {
    background-color: transparent;
    border-color: transparent;
}
.sabre_menu_navbar {
    background-color: transparent;
    border-color: transparent;
}

.lssec.cc_lssec {
    display: block;
    margin-top: 5px;
}

/* ----- FOOTER ----- */

@media (min-width: 1824px) {
    .container {
        width: 1800px;
    }
}

/* -----Product Details ----- */
.testimonial-btn {
    padding-top: 1.25rem !important;
    padding-bottom: 1.25rem !important;
}
.prodDetailContainer .cc_product_title {
    margin-top: var(--margin--0);
    margin-bottom: var(--margin--2);
    font-weight: 500;
}
.prodDetailContainer .cc_sold-by-block, .productListContent .cc_sold-by-block {
    color: var(--colorStepGray--400);
    font-size: 1.25rem;
    font-style: normal;
    margin-bottom: var(--margin--2);
    text-transform: uppercase;
}
.prodDetailContainer .cc_sold-by-block .cc_sold-by, .productListContent .cc_sold-by-block .cc_sold-by {
    font-weight: 400;
}

.prodDetailContainer .cc_badge-block {
    display: inline-block;
    color: var(--colorStepGray--400);
    font-size: .8125rem;
    font-style: normal;
    margin-right: var(--margin--4);
    vertical-align: top;
}

.prodDetailContainer .cc_category-block {
    display: inline-block;
    color: var(--colorStepGray--400);
    font-size: 1.25rem;
    font-style: normal;
    margin-bottom: var(--margin--2);
    vertical-align: top;
}

.prodDetailContainer .cc_category-block .cc_category {
    font-weight: 400;
}

.prodDetailContainer .cc_category-block .badge {
    display: block;
}

.prodDetailContainer .cc_price {
    font-size: var(--f-epsilon);
}
.prodDetailContainer .cc_name {
    font-weight: 300;
    display: block;
    cursor: pointer;
}

.notAuthorizedMessage {
    display: flex;
    align-items: center;
}

.col-md-offset-1.col-md-11.mr-4.well.notAuthorizedMessage {
    display: flex;
    align-items: center;
    background-color: #FDF5E6;
    border: 1px solid #f2dede;
}

.col-md-11.col-md-offset-1.well.widget_container.cc_panel.cc_widget_container.mb-0, .d-inline-flex.align-items-center.col-xs-12.col-md-offset-1.well.widget_container.cc_panel.cc_widget_container.ml-0.mb-0 {
    background-color: #FDF5E6;
    border: 1px solid #f2dede;
}

i.fa.fa-exclamation-circle.pr-2 {
    color: #cea404;
}

.notAuthorizedText {
    color: #663812;
}

.tab-content.cc_tab-content {
    margin-top: 30px;
}


.navbar-default .navbar-collapse, .navbar-default .navbar-form {
    background-color: #f8f8f8;
}

.navbar-inverse {
    background-color: transparent;
    height: 100%;
    border: 0;
}


.cc_sabre-footer {
    margin-bottom: -0.31rem;
    background-color: var(--colorPrimaryBlack);
    padding-top: 20px;
    padding-bottom: 15px;
    height: 100%;
}

.cc_sabre-footer .footer-nav-links {
    list-style: none;
    padding-inline-start: 0;
    display: table-row;
    float: left;
    font-size: 14px;
    margin: 0;
}
.cc_sabre-footer .footer-nav-links li {
    float: left;
    display: table-cell;
    height: 100%;
    list-style-type: none;
    margin: 5px 15px;
    vertical-align: middle;
    color: var(--colorFooterLink);
}

.cc_sabre-footer .footer-nav-links li a,
.cc_sabre-footer .footer-nav-links li a:link,
.cc_sabre-footer .footer-nav-links li a:visited,
.cc_sabre-footer .footer-nav-links li a:hover,
.cc_sabre-footer .footer-nav-links li a:active {
    color: var(--colorFooterLink);
}
.cc_sabre-footer .logoUrl {
    float: left;
}

@media (max-width: 543px) {
    .cc_sabre-footer li {
        margin: 10px 5px;
        font-size: 10px;
    }
}

.cc_sabre-footer .footer-nav-social-links {
    float: right;
    margin-bottom: 0;
}

.cc_sabre-footer .footer-nav-social-links li {
    display: table-cell;
    margin: 0;
    padding: 0;
    top: 0;
    list-style-type: none;
    vertical-align: middle;
    color: var(--colorFooterLink);
}

.modifyOrderMessage {
    padding-left: 1rem;
    padding-right: 1rem;
}

.acceptTermsToModifyOrderMessage, .orderDetailsReadOnlyMessage {
    margin-top: 1rem;
}

/* ----- SPARK FOOTER ----- */
.container-fluid.navbar-inverse.cc_navbar-inverse {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
}
.small-gray-font {
    font-size: 1.16666rem !important;
    color: var(--colorStepGray--900) !important;
}

.nav.pull-right.scroll-top.cc_scroll-top a {
    background-color: rgba(255, 255, 255, .9);
    border: 1px solid var(--colorStepGray--400);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    bottom: 1.5rem;
    -webkit-box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.3);
    box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.3);
    cursor: pointer;
    height: 4.5rem;
    position: fixed;
    right: 1.5rem;
    -webkit-transition-duration: .1s, .1s, .1s, .1s, .1s, .2s, .2s;
    -moz-transition-duration: .1s, .1s, .1s, .1s, .1s, .2s, .2s;
    -ms-transition-duration: .1s, .1s, .1s, .1s, .1s, .2s, .2s;
    -o-transition-duration: .1s, .1s, .1s, .1s, .1s, .2s, .2s;
    transition-duration: .1s, .1s, .1s, .1s, .1s, .2s, .2s;
    -webkit-transition-property: background-color, border-color, box-shadow, opacity, visibility, transform, -webkit-transform;
    -moz-transition-property: background-color, border-color, box-shadow, opacity, visibility, transform, -webkit-transform;
    -ms-transition-property: background-color, border-color, box-shadow, opacity, visibility, transform, -webkit-transform;
    -o-transition-property: background-color, border-color, box-shadow, opacity, visibility, transform, -webkit-transform;
    transition-property: background-color, border-color, box-shadow, opacity, visibility, transform, -webkit-transform;
    -webkit-transition-timing-function: linear;
    -moz-transition-timing-function: linear;
    -ms-transition-timing-function: linear;
    -o-transition-timing-function: linear;
    transition-timing-function: linear;
    width: 4.5rem;
    z-index: 1000;
}

.nav.pull-right.scroll-top.cc_scroll-top a {
    position: absolute;
    bottom: 5.1rem;
}

.nav.pull-right.scroll-top.cc_scroll-top a:hover {
    border: 1px solid var(--colorStepGray--500);
}
.nav.pull-right.scroll-top.cc_scroll-top a:focus {
    outline: 0;
    box-shadow: 0 0 0 2px var(--colorPrimaryWhite), 0 0 0 6px var(--colorFocusBlue);
}

.nav.pull-right.scroll-top.cc_scroll-top a:active {
    background-color: var(--colorStepGray--100);
    box-shadow: none;
}
.nav.pull-right.scroll-top.cc_scroll-top i {
    border-top: 1px solid var(--colorStepBlue--250);
    display: inline-block;
    height: 1.875rem;
    left: 50%;
    position: absolute;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transition: border-color .1s linear;
    -moz-transition: border-color .1s linear;
    -ms-transition: border-color .1s linear;
    -o-transition: border-color .1s linear;
    transition: border-color .1s linear;
    width: 1.875rem;
    color: transparent;
}
.nav.pull-right.scroll-top.cc_scroll-top i:before {
    border-left: 1px solid var(--colorStepBlue--250);
    border-top: 1px solid var(--colorStepBlue--250);
    content: '';
    display: inline-block;
    height: .9375rem;
    left: 50%;
    position: absolute;
    top: .375rem;
    -webkit-transform: translateX(-50%) rotate(45deg);
    -moz-transform: translateX(-50%) rotate(45deg);
    -ms-transform: translateX(-50%) rotate(45deg);
    -o-transform: translateX(-50%) rotate(45deg);
    transform: translateX(-50%) rotate(45deg);
    -webkit-transition: border-color .1s linear;
    -moz-transition: border-color .1s linear;
    -ms-transition: border-color .1s linear;
    -o-transition: border-color .1s linear;
    transition: border-color .1s linear;
    width: .9375rem;
}
.nav.pull-right.scroll-top.cc_scroll-top i:after {
    background-color: var(--colorStepBlue--250);
    content: '';
    display: inline-block;
    height: 1.5rem;
    left: 50%;
    position: absolute;
    top: calc(.375rem - 2px);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    -webkit-transition: background-color .1s linear;
    -moz-transition: background-color .1s linear;
    -ms-transition: background-color .1s linear;
    -o-transition: background-color .1s linear;
    transition: background-color .1s linear;
    width: 1px;
}
.cc_scroll-top > li {
    margin: 0 !important;
}

/*---- MODAL OVERRIDES ----*/
.modal {
    background-color: rgba(0, 0, 0, 0);
    -webkit-transition-delay: 250ms;
    transition-delay: 250ms;
    -webkit-transition-duration: 250ms;
    transition-duration: 250ms;
    -webkit-transition-property: background-color;
    transition-property: background-color;
    -webkit-transition-timing-function: cubic-bezier(.23, 1, .32, 1);
    transition-timing-function: cubic-bezier(.23, 1, .32, 1);
    color: var(--colorStepGray--900);
    flex-direction: row;
}
.modal.in {
    display: flex !important;
}
.modal-open .modal.fade.in {
    background-color: rgba(0, 0, 0, 0.75);
}
.modal-open .modal.fade.in .modal-dialog {
    margin: auto;
}
body.modal-open > .modal-backdrop.fade.in,
#overlay.modal-backdrop.fade.in {
    display: none !important;
}
.modal-content {
    border-radius: 0.1875rem;
}
.modal-header {
    color: var(--colorStepBlue--250);
}
.modal-header .close {
    position: absolute;
    top: -2.5rem;
    right: 0;
    padding: 0.25rem 0 0.25rem 1rem;

    color: var(--colorPrimaryWhite);
    font-weight: 300;
    font-size: 2rem;
    text-shadow: none;
    opacity: 1;
}

.modal-header .close:hover {
    color: var(--colorPrimaryWhite);
    opacity: 1;
    transform: scale(1.1);
}

/*-----PANEL STYLING-----*/
.cc_main_content_col .panel.panel-default {
    border-radius: .1875rem;
    border-color: var(--colorStepGray--400);
    box-shadow: 0 3px 0 rgba(204, 204, 204, .5), 0 2px 4px 0 rgba(204, 204, 204, .5);
    padding: 1.66667rem;
}
.cc_main_content_col .panel.panel-default .panel-body .panel.panel-default {
    box-shadow: none;
}
.cc_main_content_col .panel.panel-default .panel-body {
    padding: var(--padding--1);
}
.cc_main_content_col .panel.panel-default > .table-responsive {
    margin: var(--margin--1);
}
body {
    padding-right: 0 !important;
}


/*------ TABLE STYLING ----*/
.cc_main_content_col .table {

}
.cc_main_content_col .table thead th {
    font-size: var(--f-eta);
}
.cc_main_content_col .table tbody td {
    font-size: var(--f-eta);
}

th {
    white-space: nowrap;
}

/*----- BUTTONS ----*/

.cc_content_body :not(.btn-group) > .btn.btn-primary,
.modal-body :not(.btn-group) > .btn.btn-primary,
.modal-footer .btn.btn-primary {
    background-color: var(--colorPrimaryGreen);
    color: var(--colorPrimaryWhite);
    border-color: var(--colorPrimaryGreen);
}

.cc_content_body :not(.btn-group) > .btn.btn-danger-primary,
.modal-body :not(.btn-group) > .btn.btn-danger-primary,
.modal-footer .btn.btn-danger-primary {
    background-color: var(--colorPrimaryRed);
    color: var(--colorPrimaryWhite);
    border-color: var(--colorStepRed--700);
}

.cc_content_body :not(.btn-group) > .btn.btn-default,
.cc_content_body :not(.btn-group) > .btn.btn-primary,
.modal-body :not(.btn-group) > .btn.btn-default,
.modal-body :not(.btn-group) > .btn.btn-primary,
.modal-footer .btn.btn-default,
.modal-footer .btn.btn-primary,
.cc_content_body :not(.btn-group) > .btn.btn-danger,
.cc_content_body :not(.btn-group) > .btn.btn-danger-primary,
.modal-body :not(.btn-group) > .btn.btn-danger,
.modal-body :not(.btn-group) > .btn.btn-danger-primary,
.modal-footer .btn.btn-danger,
.modal-footer .btn.btn-danger-primary {
    border-radius: .1875rem;
    position: relative;
    font-size: 1rem;
    line-height: auto;
    overflow: hidden;
    padding: 0.5625rem 1.6875rem;
    text-transform: uppercase;
    transition-duration: .1s;
    transition-property: background-color, color, border-color, box-shadow;
    transition-timing-function: ease-in-out;
    white-space: nowrap;
    z-index: 5;
    margin-right: .75rem;
    font-weight: 700;
}

.cc_content_body .btn.btn-default.pull-right,
.cc_content_body .btn.btn-primary.pull-right,
.cc_content_body .btn.btn-danger.pull-right,
.cc_content_body .btn.btn-danger-primary.pull-right,
.modal-body .btn.btn-default.pull-right,
.modal-body .btn.btn-primary.pull-right,
.modal-body .btn.btn-danger-primary.pull-right,
.modal-footer .btn.btn-danger.pull-right,
.modal-footer .btn.btn-primary.pull-right,
.modal-footer .btn.btn-danger-primary.pull-right,
.modal-footer .btn.btn-danger.pull-right {
    margin-right: 0;
}

.cc_content_body .btn.btn-danger,
.modal-body .btn.btn-danger,
.modal-footer .btn.btn-danger {
    background-color: var(--colorPrimaryWhite);
    border: 1px solid var(--colorPrimaryRed);
    box-shadow: inset 0 -2px 0 var(--colorPrimaryRed);
    color: var(--colorPrimaryRed);
}
.cc_content_body :not(.btn-group) > .btn.btn-default,
.modal-body :not(.btn-group) > .btn.btn-default,
.modal-footer .btn.btn-default {
    border-color: var(--colorStepGreen--600);
    color: var(--colorPrimaryGreen);
}
.cCenterPanel .slds-button.slds-button--neutral > a {
    color: rgb(35, 130, 111);
    padding: 0.5625rem 1.6875rem;
}
.cc_content_body *:not(.btn-group) > .btn.btn-default:before,
.cc_content_body *:not(.btn-group) > .btn.btn-primary:before,
.modal-body *:not(.btn-group) > .btn.btn-default:before,
.modal-body *:not(.btn-group) > .btn.btn-primary:before,
.modal-footer .btn.btn-default:before,
.modal-footer .btn.btn-primary:before {
    box-shadow: inset 0 -2px 0 var(--colorStepGreen--600);
    content: ' ';
    display: inline-block;
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    transition: top .1s cubic-bezier(.86, 0, .07, 1);
    width: 100%;
    z-index: 5;
}
.cc_content_body *:not(.btn-group) > .btn.btn-danger-primary:before,
.modal-body *:not(.btn-group) > .btn.btn-danger-primary:before,
.modal-footer .btn.btn-danger-primary:before {
    box-shadow: inset 0 -2px 0 var(--colorStepRed--600);
    content: ' ';
    display: inline-block;
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    transition: top .1s cubic-bezier(.86, 0, .07, 1);
    width: 100%;
    z-index: 5;
}
.cc_content_body input.btn.btn-default,
.cc_content_body input.btn.btn-primary,
.modal-body input.btn.btn-default,
.modal-body input.btn.btn-primary,
.modal-footer input.btn.btn-default,
.modal-footer input.btn.btn-primary {
    box-shadow: inset 0 -2px 0 var(--colorStepGreen--600);
    transition: top .1s cubic-bezier(.86, 0, .07, 1);
}
.cc_content_body input.btn.btn-danger-primary,
.modal-body input.btn.btn-danger-primary,
.modal-footer input.btn.btn-danger-primary {
    box-shadow: inset 0 -2px 0 var(--colorStepRed--600);
    transition: top .1s cubic-bezier(.86, 0, .07, 1);
}
.cc_content_body .btn.btn-primary:after,
.modal-body .btn.btn-primary:after,
.modal-footer .btn.btn-primary:after {
    background-color: var(--colorStepGreen--400);
    content: ' ';
    display: inline-block;
    height: 1500px;
    position: absolute;
    transition-duration: .1s;
    transition-property: transform, -webkit-transform;
    transition-timing-function: cubic-bezier(.86, 0, .07, 1);
    transform: translate(-28%, -3%) rotate(-24deg);
    width: 1500px;
    z-index: -5;
}
.cc_content_body .btn.btn-danger-primary:after,
.modal-body .btn.btn-danger-primary:after,
.modal-footer .btn.btn-danger-primary:after {
    background-color: var(--colorDanger);
    content: ' ';
    display: inline-block;
    height: 1500px;
    position: absolute;
    transition-duration: .1s;
    transition-property: transform, -webkit-transform;
    transition-timing-function: cubic-bezier(.86, 0, .07, 1);
    transform: translate(-28%, -3%) rotate(-24deg);
    width: 1500px;
    z-index: -5;
}
.cc_content_body .btn.btn-primary:hover:after,
.cc_content_body .btn.btn-danger-primary:hover:after,
.modal-body .btn.btn-primary:hover:after,
.modal-body .btn.btn-danger-primary:hover:after,
.modal-footer .btn.btn-primary:after,
.modal-footer .btn.btn-danger-primary:after {
    -webkit-transform: translate(-31%, -3%) rotate(-24deg);
    transform: translate(-31%, -3%) rotate(-24deg);
}
.cc_content_body .btn.btn-primary:hover,
.modal-body .btn.btn-primary:hover,
.modal-footer .btn.btn-primary:hover {
    background-color: var(--colorPrimaryGreen);
}
.cc_content_body .btn.btn-danger-primary:hover,
.modal-body .btn.btn-danger-primary:hover,
.modal-footer .btn.btn-danger-primary:hover {
    background-color: var(--colorPrimaryRed);
}
.cc_content_body .btn.btn-danger:hover,
.modal-body .btn.btn-danger:hover,
.modal-footer .btn.btn-danger:hover {
    background-color: var(--colorPrimaryWhite);
    border: 1px solid var(--colorDanger);
    box-shadow: inset 0 -2px 0 var(--colorDanger);
    color: var(--colorDanger);
}
.cc_content_body .btn.btn-primary:focus,
.modal-body .btn.btn-primary:focus,
.modal-footer .btn.btn-primary:focus {
    background-color: var(--colorPrimaryGreen);
    box-shadow: 0 0 0 2px var(--colorPrimaryWhite), 0 0 0 6px var(--colorStepGreen--100);
    outline: 0;
    z-index: 10;
}
.cc_content_body .btn.btn-danger-primary:focus,
.modal-body .btn.btn-danger-primary:focus,
.modal-footer .btn.btn-danger-primary:focus {
    background-color: var(--colorPrimaryRed);
    box-shadow: 0 0 0 2px var(--colorPrimaryWhite), 0 0 0 6px var(--colorStepRed--100);
    outline: 0;
    z-index: 10;
}
.cc_content_body .btn.btn-default:focus,
.modal-body .btn.btn-default:focus,
.modal-footer .btn.btn-default:focus {
    box-shadow: 0 0 0 2px var(--colorPrimaryWhite), 0 0 0 6px var(--colorStepGreen--100);
    outline: 0;
    z-index: 10;
}
.cc_content_body .btn.btn-danger:focus,
.modal-body .btn.btn-danger:focus,
.modal-footer .btn.btn-danger:focus {
    box-shadow: inset 0 -2px 0 var(--colorPrimaryRed), 0 0 0 2px var(--colorPrimaryWhite), 0 0 0 6px var(--colorStepRed--100);
    outline: 0;
    z-index: 10;
}
.cc_content_body .btn.btn-primary:active,
.modal-body .btn.btn-primary:active,
.modal-footer .btn.btn-primary:active {
    background-color: var(--colorStepGreen--400);
}
.cc_content_body .btn.btn-danger-primary:active,
.modal-body .btn.btn-danger-primary:active,
.modal-footer .btn.btn-danger-primary:active {
    background-color: var(--colorDanger);
}
.cc_content_body .btn.btn-default:active,
.modal-body .btn.btn-default:active,
.modal-footer .btn.btn-default:active {
    background-color: var(--colorStepGray--100);
}
.cc_content_body .btn.btn-default.active {
    background-color: var(--colorActive);
    color: var(--colorPrimaryWhite);
    border-color: var(--colorPrimaryLightBlue);
}
.cc_content_body .btn.disabled:active {
    background-color: inherit;
}


.cc_content_body .cc_share_button {
    font-size: var(--f-delta);
    color: var(--colorStepGray--400)
}

.removeFilter {
    padding: 0;
    margin-bottom: 1rem;
    vertical-align: center;
}

.btn.btn-primary p,
.btn.btn-default p,
.btn-btn-danger p {
    margin-bottom: 0;
}

/*---- BREADCRUMBS -----*/
#breadcrumb_desktop_container {
    max-width: 100%;
    width: 100% !important;
    padding: 0;
}

/*-----PRODUCT LIST ALPHA PAGINATION-----*/

.cc_alpha_pagination {
    display: flex;
    text-align: center;
    margin: 0.75rem 0;
}
.cc_alpha_pagination a {
    padding: .75rem 0;
    flex: 1 0 auto;

}

/*----- PRODUCT SEARCH RESULTS -----*/
.productListContent.cc_results_list.row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
    width: 100%;
}
.productListContent.cc_results_list.row::before {
    content: none;
}

.productListContent.cc_results_list,
.cc_spotlight_products_list .cc_spotlight_products .cc_featured_products {
    display: flex;
    flex-wrap: wrap;
    margin: 0;
}
.productListContent.cc_results_list .cc_product_container,
.cc_spotlight_products .cc_product_container {
    flex: 0 0 33%;
}

span.cc_product_container {
    height: 100%;
    padding: 0.5rem;
}

.cc_product_item.cc_row_item {
    height: 100%;
    padding-left: 0;
    padding-right: 0;
}

.panel.panel-default.cc_panel {
    height: 100%;
}

.productListContent.cc_results_list .cc_product_container:nth-of-type(3n) .cc_product_item,
.cc_spotlight_products .cc_product_container:nth-of-type(3n) .cc_product_item {
    padding-right: 0;
}

.productListContent.cc_results_list .cc_product_container:nth-of-type(3n-2) .cc_product_item,
.cc_spotlight_products .cc_product_container:nth-of-type(3n-2) .cc_product_item {
    padding-left: 0;
}

@media only screen and (min-width: 33.9375rem) and (max-width: 47.99375rem) {
    .productListContent.cc_results_list .cc_product_container,
    .cc_spotlight_products .cc_product_container {
        flex: 0 0 50%;
    }
}

@media only screen and (max-width: 33.9375rem) {
    .productListContent.cc_results_list .cc_product_container,
    .cc_spotlight_products .cc_product_container {
        flex: 0 0 100%;
    }
    .productListContent.cc_results_list .cc_product_container .cc_product_item,
    .cc_spotlight_products .cc_product_container .cc_product_item {
        padding: 0;
    }

    .productListContent.cc_results_list .cc_product_container:nth-of-type(3n-1) .cc_product_item, .cc_spotlight_products .cc_product_container:nth-of-type(3n-1) .cc_product_item {
        padding-left: 0;
        padding-right: 0;
    }
}

.cc_product_container .panel.panel-default,
.cc_featured_col .panel.panel-default {
    border-width: 1px;
    border-style: solid;
    border-color: var(--colorStepGray--400);
}
.cc_product_container .cc_product_image,
.cc_featured_col .cc_product_image {
    padding: 0 1rem;
    max-width: 6rem;
    float: left;
}
.cc_product_container .img-thumbnail {
    padding: 0;
    border: none;
    min-width: 40px;
}
.cc_product_container .cc_product_link h5,
.cc_featured_col .cc_product_link h5,
.cc_cart_item_container .cc_item_title h5 {
    margin-top: var(--margin--0);
}
.cc_product_container .cc_product_link a,
.cc_featured_col .cc_product_link a,
.cc_cart_item_container .cc_item_title a {
    font-size: 1.75rem;
    color: var(--colorPrimaryBlue);
    font-weight: 500;
    display: block;
    border-width: 0;
    min-height: 3rem;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cc_product_container .cc_product_link a:hover,
.cc_featured_col .cc_product_link a:hover {
    text-decoration: underline;
    border-width: 0;
}
.cc_product_container .cc_row_product_info,
.cc_featured_col .cc_row_product_info {
    font-size: var(--f-eta);
    margin-top: 1rem;
}
.cc_product_container .cc_rateit,
.cc_featured_col .cc_rateit {
    margin-bottom: 0.5rem;
}
.cc_rateit .cc_review_count,
.cc_product_container .cc_rateit .cc_review_count,
.cc_featured_col .cc_rateit .cc_review_count {
    float: right;
    margin-left: 0.5rem;
    font-size: 0.625rem;
    background-color: var(--colorStepGray--500);
}
.cc_product_container .cc_row_product_info,
.cc_featured_col .cc_row_product_info {
    height: 12rem;
    overflow: hidden;
}
.cc_product_container .cc_product_row_actions {
    padding-top: 1rem;
}

.cc_product_container .cc_product_type,
.cc_featured_col .cc_product_type {
    float: left;
    margin-top: 14px;
    margin-bottom: 0;
}

.cc_product_container .cc_price_type,
.cc_featured_col .cc_price_type {
    float: right;
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--colorStepGray--650);
    margin-top: 1rem;
    margin-bottom: 0;
}
.cc_featured_col {
    height: 100%;
    padding: 0.5rem;
}
.badge {
    padding: 5px 8px;
    font-weight: 500;
    font-size: .83334rem;
    text-transform: uppercase;
}
.secContentOverview > p {
    margin-bottom: 1rem;
}
.cc_nav-tabs {
    margin-left: 0;
}
.cc_nav-tabs > li {
    margin-top: 0;
}

/*-----SEARCH CATEGORIES FLEXED-----*/
hr {
    margin: 1.5rem 0 !important;
}
.container-fluid.cc_main_container.cc_tmpl_Sabre {
    height: 100%;
}
.cc_main_content_col {
    margin-top: 2rem;
    margin-right: 5rem;
    margin-left: 1rem;
}
.cc_flex_main {
    display: flex;
    height: 100%;
}
.cc_flex_main .cc_filterToggle {
    position: relative;
    flex: 1 0;
    background-color: var(--colorPrimaryBlue);
    max-width: 3rem;
    white-space: nowrap;
    z-index: 1000;
    cursor: pointer;
}
.cc_filterToggle {
    z-index: 10 !important;
}
.cc_flex_main .cc_filterToggle .cc_toggleWrapper {
    height: 100%;
    color: var(--colorPrimaryWhite);
    font-weight: 300;
    width: 3rem;
}
.cc_flex_main .cc_filterToggle .cc_toggleWrapper .cc_toggleIndicator {
    font-size: 2rem;
    display: block;
    text-align: center;
    margin-top: 20px;
}
.cc_flex_main .cc_searchFilters {
    flex: 1 0;
    background-color: var(--colorPrimaryWhite);
    max-width: 23rem;
    margin-right: 1rem;
    border: 1px solid var(--colorStepGray--300);
    overflow: hidden;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
    -webkit-transition: -webkit-transform 150ms var(--ease-in-out-cubic);
    -moz-transition: -moz-transform 150ms var(--ease-in-out-cubic);
    -ms-transition: -ms-transform 150ms var(--ease-in-out-cubic);
    -o-transition: -o-transform 150ms var(--ease-in-out-cubic);
    transition: transform 150ms var(--ease-in-out-cubic);
}
.cc_flex_main .cc_filterToggle.collapsed + .cc_searchFilters {
    -webkit-transform: translateX(-100%) scaleX(0);
    -moz-transform: translateX(-100%) scaleX(0);
    -ms-transform: translateX(-100%) scaleX(0);
    -o-transform: translateX(-100%) scaleX(0);
    transform: translateX(-100%) scaleX(0);
    flex: 0 0 0;
    padding: 0;
    margin: 0;
    border: 0;
}
.cc_searchFilters.initializing + .cc_main_content_col {
    width: 100% !important;
}
@media only screen and (max-width: 68.74375rem) {
    .cc_flex_main {
        position: relative;
    }
    .cc_flex_main .cc_filterToggle {
        position: relative;
        z-index: 1100;
    }
    .cc_flex_main .cc_filterToggle:not(.collapsed) + .cc_searchFilters {
        position: absolute;
        width: calc(100% - 3rem);
        max-width: 20rem;
        -webkit-transform: translateX(0) scaleX(1);
        -moz-transform: translateX(0) scaleX(1);
        -ms-transform: translateX(0) scaleX(1);
        -o-transform: translateX(0) scaleX(1);
        transform: translateX(0) scaleX(1);
        flex: 1 0 auto;
        display: block;
        padding-left: 15px;
        z-index: 1050;
        left: 3rem;
        bottom: 0;
        top: 0;
        right: 0;
    }
    .cc_main_content_col {
        width: 100%;
    }
}

.cc_filterToggle.initializing,
.cc_searchFilters.initializing {
    padding: 0 !important;
    display: none !important;
    position: absolute;
    top: -1000rem;
    left: -1000rem;
}
.cc_flex_main .cc_filterToggle.collapsed + .cc_searchFilters + .cc_main_content_col {
    width: 100%;
}
.cc_category_tree {
    margin-top: 0;
}
.cc_category_tree .cc_title {
    position: relative;
}
.cc_category_tree .panel-heading {
    padding: 0;
}
.cc_category_tree .cc_title .cc_cat_name {
    text-transform: capitalize;
    display: block;
    color: var(--colorStepGray--900);
    padding: .5rem 1rem .5rem 1rem;
    border-bottom: 0;
}
.cc_category_tree .cc_title .cc_product_count {
    position: absolute;
    top: 0.5rem;
    right: 1rem;
    color: var(--colorStepBlue--250);
    font-size: var(--f-eta);
    z-index: auto;
}
.cc_category_tree .cc_title .cc_cat_name:hover,
.cc_category_tree .cc_title .cc_cat_name:active {
    background-color: var(--colorStepBlue--250);
    color: var(--colorPrimaryWhite);
}
.cc_category_tree .cc_title .cc_cat_name:hover + .cc_product_count,
.cc_category_tree .cc_title .cc_cat_name:active + .cc_product_count {
    color: var(--colorPrimaryWhite);
}

.list-group-item {
    border: none;
    padding: 0 0 0 1rem;
    margin-bottom: 0;
}

.checkbox .cc_checkbox {
    font-weight: 300;
    color: var(--colorPrimaryBlue);
}

/*----- CART DETAILS -----*/

.cc_panel_shopping_cart .cc_cart_item_list .cc_cart_item {
    border-color: var(--itemCart__border-color);
    border-width: 1px;
    border-style: solid;
    padding: 1.66667rem;
    margin-bottom: var(--margin--4);
    -webkit-border-radius: var(--spaceXS);
    -moz-border-radius: var(--spaceXS);
    border-radius: var(--spaceXS);
}
.cc_panel_shopping_cart .cc_price,
.cc_checkout_review .cc_price,
.cc_checkout_review .cc_grand_total,
.cc_totals_section .cc_grand_total,
.cc_order_item_list .cc_item_total {
    font-size: var(--f-delta);
}

.cc_cart_item_container .cc_item_title a,
.checkoutContent .cc_ext_name,
.cc_order_item_list .cc_item_title a {
    font-size: 1.75rem;
    font-weight: 500;
    color: var(--colorPrimaryBlue);
}

.cc_name {
    font-size: var(--f-epsilon);
}
.cc_name .cc_short_desc {
    font-size: var(--f-eta);
    color: var(--colorStepGray--600);
}
.cc_value .cc_name {
    font-size: 1.1rem;
}

.cc_name_cart {
    font-size: var(--f-eta);
    margin-bottom: 0.25rem;
}

.cc_total {
    font-size: var(--f-eta);
}

.cc_cart_item_container .table .cc_region_filter {
    margin-bottom: 0;
}
.cc_cart_item_container .table .removeFilter {
    display: none;
}
.cc_order_details .cc_order_success {
    text-align: center
}
.cc_order_details .cc_order_success {
    font-size: var(--f-alpha);
    display: block;
}
.cc_order_details .confirmation_icon {
    font-size: 4rem;
    color: var(--colorSuccess);
    display: block;
}
.cc_order_details hr {
    border-color: var(--colorStepGray--500);
}

.cc_order_details .cc_order_success .cc_order_success_message {
    font-size: 1rem;
    padding-bottom: 1rem;
}
.cc_order_details .cc_order_confirmation_list-item a {
    display: inline-block !important;
}

/*----- BOOTSRTAP FLEX -----*/
.d-inline-flex {
    display: inline-flex;
}
/* ------------------------ */

/*-----CAROUSEL CONTROL-----*/
.cc_content_body .carousel .carousel-control {
    opacity: 0.25;
    -webkit-transition: opacity 150ms;
    -moz-transition: opacity 150ms;
    -ms-transition: opacity 150ms;
    -o-transition: opacity 150ms;
    transition: opacity 150ms;
    -webkit-transition-duration: .1s;
    -moz-transition-duration: .1s;
    -ms-transition-duration: .1s;
    -o-transition-duration: .1s;
    transition-duration: .1s;
    -webkit-transition-timing-function: ease-in-out;
    -moz-transition-timing-function: ease-in-out;
    -ms-transition-timing-function: ease-in-out;
    -o-transition-timing-function: ease-in-out;
    transition-timing-function: ease-in-out;
}

.cc_content_body .carousel .carousel-control:hover,
.cc_content_body .carousel .carousel-control:focus {
    opacity: 0.9;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    border-bottom: none;
}
.cc_content_body .carousel .carousel-control .carousel-control-visual {
    background-color: var(--colorPrimaryBlack);
    border-radius: 50%;
    font-size: 2rem;
    color: var(--colorPrimaryWhite);
    line-height: 4rem;
    height: 4rem;
    width: 4rem;
    margin-top: 0;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}
.cc_content_body .carousel .carousel-control.left .carousel-control-visual {
    margin-left: 0;
    -webkit-transform: translateY(-50%) translateX(-50%);
    -moz-transform: translateY(-50%) translateX(-50%);
    -ms-transform: translateY(-50%) translateX(-50%);
    -o-transform: translateY(-50%) translateX(-50%);
    transform: translateY(-50%) translateX(-50%);
}
.cc_content_body .carousel .carousel-control.right .carousel-control-visual {
    margin-right: 0;
    -webkit-transform: translateY(-50%) translateX(50%);
    -moz-transform: translateY(-50%) translateX(50%);
    -ms-transform: translateY(-50%) translateX(50%);
    -o-transform: translateY(-50%) translateX(50%);
    transform: translateY(-50%) translateX(50%);
}
.cc_content_body .carousel .carousel-control:focus .carousel-control-visual,
.cc_content_body .carousel:focus {
    outline: 0;
    box-shadow: 0 0 0 2px var(--colorPrimaryWhite), 0 0 0 6px var(--colorFocusBlue);
}

.cc_gdpr-footer {
    bottom: 0;
    position: fixed;
    z-index: 10000;
    background: var(--colorPrimaryBlack);
    color: var(--colorStepGray--300);
    width: 100vw;
    opacity: 0.9;
}
.cc_gdpr-footer a {
    text-decoration: underline;
    color: var(--colorPrimaryWhite);
    font-weight: 400;
}

select.error, input.error, textarea.error {
    border-radius: 5px !important;
    outline: none;
    border: 0.1rem solid var(--colorStepRed--400);
}

.cc_content_body .form-group label.error, .modal-body .form-group label.error, .pccListHeader label.error {
    color: #ac0000;
    font-weight: 600;
}

.error.form-control {
    margin-bottom: 0 !important;
}

.ccSabreContactForOnlineOrder {
    padding: 10px;
    border-radius: 2px;
    text-align: center;
    color: #a94442;
    background-color: #f2dede;
    border-color: #ebccd1;
}

.cc_order_status {
    text-transform: uppercase;
    color: var(--colorPrimaryBlue);
    font-size: 0.875rem;
}
a.discontinueProduct {
    font-size: 1.1666rem;
    color: var(--colorStepGray--650);
}
a.discontinueProduct:hover {
    color: var(--colorStepGray--800);
    border-color: var(--colorStepGray--900);
}
a.discontinueProduct:focus {
    color: var(--colorStepGray--650);
}
.cc_order_information h4, .cc_order_item_list h4 {
    color: var(--colorStepGray--900);
    margin: 0;
    font-weight: 500;
}
.panel.panel-default.cc_order_information, .panel.panel-default.cc_order_item_list {
    padding-left: 1.0rem;
    padding-right: 1.0rem;
}
.cc_order_item_list .order-item {
    border-radius: var(--spaceXS);
    border: solid 1px var(--colorStepGray--400);
    margin-bottom: 2rem;
}
.order-img-wrapper {
    width: 4rem;
}
.order-img {
    width: 100%;
    display: block;
    border-radius: 6px;
}
.order-item .minor-line {
    max-width: 25rem;
}
.ccSabre-pcc-selector-wrapper {
   padding-right: 0;
}

.cc_content_body .form-group label.error, .pccListHeader label.error {
    display: inline-block;
}
.ccSabre-pcc-selector-wrapper h3 {
    font-size: var(--f-delta);
    font-weight: normal;
}
.saveAgencyUsers {
    width: 16rem;
}
#SamAddCustomSelectorUserForm .form-inline label, .config-label {
    font-size: 1rem;
    font-weight: 700;
}
#SamAddCustomSelectorUserForm .form-inline input, #SamAddCustomSelectorUserForm .form-inline select {
    width: 100%;
}
#SamCustomSelectorAddUsers .modal-footer .btn,
#SamDeleteCustomSelectorUser .modal-footer .btn {
    min-width: 9rem;
}
#SamDeleteCustomSelectorUser .modal-header,
#SamDeleteCustomSelectorUser .modal-footer {
    border: 0;
}
.SamCustomSelectorPanel {
    border-radius: var(--spaceXS);
    border: solid 1px var(--colorStepGray--400);
}
.SamCustomSelectorPanel .panel-heading h4 {
    font-weight: 300;
}
.SamCustomSelectorPanel .panel-heading span {
    font-size: 0.8rem;
}
.SamCustomSelectorPanel .spark-label, #CustomSelectorUserForm .spark-label {
    font-size: 1.25rem;
}
.ccSabreInfoIcon, .ccSabreOneUserIncludedMessage {
    color: var(--colorStepGray--700);
    font-size: 0.75rem;
}
.customSelectorUsersListRows .btns-cell {
    min-width: 120px;
    padding-top: 5px;
    padding-bottom: 5px;
}
.customSelectorUsersListRows .btns-cell .divider-vertical {
    margin-right: 3px;
    border-left: 1px solid #767676;
}
input.ccSabreCorporateIdentifier {
    max-width: 10rem;
    height: 2.3334rem !important;
}

.pccSelectedErrorMessage {
    padding: 15px;
    border: 1px solid transparent;
    border-radius: 4px;
}
.pccSearchBoxDiv > div, .pccAccountRegionsDiv > div {
    display: flex;
    align-items: center;
    height: 100%;
}
.standard-pcc-selector > div > #searchKeywordBox {
    height: 100%;
}
input.searchKeywordBox, input.cc_region_filter {
    border: 1px solid #cccccc !important;
}
input.searchKeywordBox:focus, div.cc_region_filter:focus {
    outline: 0;
    background-color: #EEEEEE;
    border-color: #CCCCCC;
    -webkit-box-shadow: none;
    box-shadow: none;
}
.pccRowHeader {
    font-weight: 700;
    font-size: 1.1rem;
}
.pccRowValue {
    font-size: 1.16666rem;
    font-weight: 300;
}
label > p, .pccRowHeader > p {
    line-height: 1.5rem;
    font-size: 1.1rem;
}
h3 > p {
    font-size: 2.3333rem;
    line-height: 3rem;
}
input[type='file'] {
    display: none;
}

#browse-btn {
    width: 7rem;
    border-radius: 2px;
    box-shadow: inset 0 -2px 0 0 var(--colorPrimaryGreen);
    border: solid 1px var(--colorPrimaryGreen);
    background-color: var(--colorPrimaryWhite);
    font: normal bold 13px Roboto;
    color: var(--colorPrimaryGreen);
}

.file-info {
    font: normal 300 13px Roboto;
    color: var(--colorStepGray--1000);
    margin: auto;
}

.ccSabrePccListerTable p {
    margin-bottom: 0;
}

.nav-tabs>li {
    float: left;
    margin-bottom: -1px;
    margin-right: 6px;
}

.cc_customerr_container {
    position: relative;
    top: 200px;
    left: 50%;
    text-align: center;
    transform: translate(-50%, -50%);
}
.cc_customerr_container h1 {
    margin-bottom: 40px;
    font-weight: 500;
}
.cc_customerr_container p {
    font-size: 24px;
}
.cc_myaccount_user > p, .cc_myaccount_general > p {
    margin-bottom: 1rem;
}

#additional_fee_msg p, #not-authorized-message p, #no-rights-message p, .error p, #SamAddCustomSelectorUserForm p, #product-unavailable p, .well p {
    margin: 0 !important;
    padding: 0 !important;
}

.pcc-modal-width {
    width: 440px !important;
}

.review-star-font-size {
    font-size: medium;
}

.review-star-color-fill {
    color: var(--colorStarFill);
}

.review-star-color-none {
    color: var(--colorStarNone);
}

.float-left {
    float: left !important;
}

.float-right, #SamAddCustomSelectorUserForm .error {
    float: right !important;
}

.ccSabre-select {
    border-radius: .5em;
    margin-top: .5em;
    text-align-last: center;
}

.menu-account-padding {
    padding:calc(1.75rem - 2px) .75rem !important;
}

.button-link-spacing {
    padding: 9px 32px !important;
}

.text-left {
    text-align: left !important;
}

.font-weight-500 {
    font-weight: 500;
}

.pcc-status-completed {
    color: var(--oipcc__status--complete) !important;
}

.pcc-status-incomplete {
    color: var(--oipcc__status--incomplete);
}

.custom-selector-users-modal, .pcc-configuration-modal {
    width: 750px !important;
}

.disabled-pcc {
    background: var(--colorStepGray--100);
}

.down-arrow:before {
    content: "\25BC";
}

.right-arrow:before {
    content: "\25BA";
}

.ccSabreQuanity {
    padding: 6px 2px !important;
    font-size: 12px;
}

.terms-and-conditions-version {
    font-size: 14px;
}

button#browse-btn:disabled {
    cursor:not-allowed;
}

.spark-radio__input:disabled, .spark-checkbox__input:disabled {
    cursor: not-allowed;
    z-index: 10;
}

textarea:read-only {
    background-color: #EEEEEE;
}

.total-price-alert {
    background-color: #FBEED5;
    border-color: #CD8511;
    padding: 0 0 0 1rem;
}

.total-price-alert p {
    margin: 0.5rem 0 0 0;
}

.corporateIds{
    display: grid;
    grid-template-columns: repeat(auto-fill,minmax(170px, 1fr));
}

.warning-container {
    background-color: #fbeed5;
    border-color: #cd8511;
}
ul.cc_scroll-top {
    display: none !important;
}
.cc_prod_link.cc_product_name:focus {
    text-decoration: underline;
}
.ccSabreOrderHistory:focus {
    text-decoration: underline;
}
.text-muted {
    color: #000000 !important;
}
.btn-link {
    color: #334db7 !important;
}
.order-confirmation-heading {
    margin: auto;
}
.custom-agency-user-lister {
    overflow-x: auto;
}
@-moz-document url-prefix() {
    .spark-btn::before {
        z-index: -1 !important;
    }
}
