@import url(https://fonts.googleapis.com/css?family=Lato:400,300,100,700,900&subset=latin,latin-ext);

:root {
    /*global variables*/
    --body-background-color: #ffffff;
    --primary-color: #1C75BC;
    --primary-color-hover: #00A0EC;
    --required-color: #DC3545;
    --main-text-color: #000000;
    --secondary-text-color: #5C6670;
    --dark-border: #5C6670;
    --medium-border: #939598;
    --light-border: #E1E7EC;
    --border-thickness: 1px;
    --font-family-style: Helvetica, Arial, sans-serif;
    /*cards*/
    --card-border-radius: 0px;
    --card-border-thickness: var(--border-thickness);
    --card-border-color: var(--light-border);
    --card-background-color: var(--body-background-color);
    --card-text-color: var(--main-text-color);
    --card-shadow: 0px;
    --card-shadow-color: #C7C7C7;
    --image-width: 40%;
    --card-wrap-color: #C7C7C7;
    --card-wrap-border-radius: 0px;
    /*buttons*/
    --button-background-color: var(--primary-color);
    --button-color: #ffffff;
    --button-background-color-hover: var(--primary-color-hover);
    --button-color-hover: #ffffff;
    --button-background-color-disabled: var(--light-border);
    --button-color-disabled: #ffffff;
    --button-roundness: 99px;
    /*product*/
    --product-text-color: var(--main-text-color);
    --product-font-size: 25px;
    --product-font-weight: 400;
    --product-decoration: none;
    --product-style: normal;
    --product-spacing: 3rem;
    /*optiongroup*/
    --option-group-text-color: #000000;
    --option-group-font-size: 15px;
    --option-group-font-weight: 400;
    --option-group-decoration: none;
    --option-group-style: normal;
    /*options*/
    --option-color: #ffffff;
    --option-price-color: var(--primary-color);
    --option-background-color: #E1E7EC;
    --option-color-hover: #ffffff;
    --option-background-color-hover: var(--primary-color);
    --option-color-selected: #ffffff;
    --option-background-color-selected: var(--primary-color);
    --option-roundness: 5px;
    --option-title-font-size: 20px;
    --option-description-font-size: 16px;
    --option-price-font-size: 16px;
    --option-caption-font-size: 14px;
    --option-caption-font-weight: 400;
    /*popups*/
    --popup-background-color: var(--body-background-color);
    --popup-text-color: var(--main-text-color);
    /*scroll for iframe*/
    scroll-behavior: auto;
}


/*#region STARTUP*/
/*padding on the bottom for iphone 'bounce'*/
main {
    padding-bottom: 80px;
}

body {
    background-color: var(--body-background-color);
}

html, body {
    font-family: var(--font-family-style);
    font-size: 16px;
    -webkit-font-smoothing: subpixel-antialiased !important;
    color: var(--main-text-color);
    font-weight: 400;
}

*, :after, :before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.alert {
    border-radius: 0;
}

.container {
    margin-right: auto;
    margin-left: auto;
}

.text-center {
    text-align: center;
}

.grid {
    margin: 25px 0 0 0;
    width: 100%;
    text-align: center;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-content: space-around;
    color: var(--main-text-color);
    font-family: var(--font-family-style);
}

    .grid section, .is-existing-customer-grid section {
        width: 350px;
        padding: 0 25px 25px;
        margin: 15px;
        color: var(--card-text-color);
        background-color: var(--card-background-color);
        border-radius: var(--card-border-radius);
        border: var(--card-border-thickness) solid var(--card-border-color);
        box-shadow: 0 min(0.5rem, var(--card-shadow)) var(--card-shadow) var(--card-shadow-color);
    }

.centering-container {
    display: flex;
    justify-content: center;
}

.w-fit-content {
    width: fit-content;
}

.btn {
    font-family: var(--font-family-style);
    transition: color .4s, background-color .4s, border-color .4s;
    margin: 5px 0px;
}

    .btn.btn-outline {
        --bs-btn-color: var(--button-color);
        --bs-btn-bg: var(--button-background-color);
        --bs-btn-border-color: var(--button-background-color);
        --bs-btn-hover-color: var(--button-color-hover);
        --bs-btn-hover-bg: var(--button-background-color-hover);
        --bs-btn-hover-border-color: var(--button-background-color-hover);
        --bs-btn-focus-shadow-rgb: 49, 132, 253;
        --bs-btn-active-color: var(--button-color);
        --bs-btn-active-bg: var(--button-background-color-hover);
        --bs-btn-active-border-color: var(--button-background-color-hover);
        --bs-btn-disabled-color: var(--button-color-disabled);
        --bs-btn-disabled-bg: var(--button-background-color-disabled);
        --bs-btn-disabled-border-color: var(--button-background-color-disabled);
        border-radius: var(--button-roundness);
        font-size: 16px;
        padding: 8px 24px;
    }
/*----------------------------------------------*/
/*#endregion*/


/*#region COMMON HTML*/
a {
    text-decoration: none;
    outline: none;
}

    a, a:visited {
        color: var(--main-text-color);
    }

        a:not(.btn):hover,
        a:not(.btn):hover h1,
        a:not(.btn):hover h2,
        a:not(.btn):hover h3,
        a:not(.btn):hover h4,
        a:not(.btn):hover h5,
        a:not(.btn):hover h6,
        a:not(.btn):hover .h1,
        a:not(.btn):hover .h2,
        a:not(.btn):hover .h3,
        a:not(.btn):hover .h4,
        a:not(.btn):hover .h5,
        a:not(.btn):hover .h6 {
            color: var(--primary-color-hover);
            transition: all .4s;
            cursor: pointer;
        }

ul {
    margin-bottom: 0px;
    list-style: unset;
}

li.li-spaced {
    margin-top: 10px;
    margin-bottom: 10px;
}

.modrow {
    margin-top: 20px;
}

label {
    font-weight: normal;
}

@media (max-width: 1199px) {
    label {
        display: initial;
        font-size: 15px;
    }
}

hr {
    border-top: 2px solid var(--medium-border);
    margin: 15px 0px;
    opacity: 1;
}

h1, h2, h3, h4, h5, h6 {
    margin: 0;
    line-height: 1.2em;
}

h1 {
    font-size: 32px;
}

h2 {
    font-size: 26px;
}

h3 {
    font-size: 21px;
}

h4 {
    font-size: 18px;
}

h5 {
    font-size: 14px;
}

h6 {
    font-size: .75em;
}

h1, .h1, h2, .h2, h3, .h3 {
    margin-top: 20px;
    margin-bottom: 10px;
}

h4, .h4, h5, .h5, h6, .h6 {
    margin-top: 10px;
    margin-bottom: 10px;
}

p {
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 1px;
}

.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {
    position: relative;
    min-height: 1px;
}
/*----------------------------------------------*/
/*#endregion*/


/*#region TABLE*/
table {
    width: 100%;
}

.table > :not(caption) > * > * {
    border-bottom-width: 0px;
}

td {
    padding: 10px 0;
}

th {
    font-size: 18px;
    text-align: left;
    padding: 10px 0 0 0;
}
/*----------------------------------------------*/
/*#endregion*/


/*#region ADDRESS SEARCH*/
/*START PAGE*/
.is-start-page-heading {}
.is-start-page-subheading {}

.is-customer-center {
    height: 450px !important;
    border: none !important;
    box-shadow: none !important;
    width: 100% !important;
    background-color: inherit !important;
}

.is-customer-center-content {
    width: 350px;
    display: inline-block;
}

.is-new-customer-heading {}

.is-start-page-image {
    width: 40% !important;
}

.is-address-search-label {}

.is-address-search {
    width: min(550px, 80vw);
}

.is-address-search-dropdown-list {
    width: inherit;
    margin-top: 40px;
    padding: 0;
}

.grid ul:not(.list-group),
.is-existing-customer-grid ul:not(.list-group) {
    list-style: disc;
    width: 250px;
    margin: 0 auto;
    text-align: left;
    line-height: 20px;
}

    .grid ul:not(.list-group) li:not(list-group-item),
    .is-existing-customer-grid ul:not(.list-group) li:not(list-group-item) {
        list-style-type: disc;
    }

.scrollable {
    max-height: 250px;
    overflow-y: auto;
    overflow-x: hidden;
}

.prevent-select {
    -ms-user-select: none; /* IE 10 and IE 11 */
    -webkit-user-select: none; /* Safari */
    user-select: none; /* Standard syntax */
}

.is-left-address-search {
    text-align: left;
    padding-right: 3px;
    font-weight: bold;
    flex: 1;
}

.is-right-address-search {
    text-align: right;
    padding-right: 3px;
    flex: 1;
}

@media (max-width:500px) {
    .is-address-search {
        width: 80vw;
    }

    .is-address-search-line {
        flex-direction: column;
        gap: 0 !important;
    }

    .is-right-address-search {
        text-align: left;
    }
}

@media (max-width:400px) {
    .is-customer-center-content {
        width: 250px;
    }

    .grid .is-customer-center {
        height: 440px !important;
    }
}

.is-address-search-button {}

/*-----------------------------------*/
/*HAS EXISTING SERVICE*/
.is-has-existing-service-heading { }
.is-has-existing-service-subheading { }
.is-has-existing-service-address { }
.is-moving-heading { }
.is-moving-button { }
.is-block-address-heading { }
.is-search-another-address-button { }
/*-----------------------------------*/
/*OUT OF SERVICE*/
.is-out-of-service-heading { }
.is-out-of-service-subheading { }
/*-----------------------------------*/
/*#endregion*/


/*#region BREADCRUMBS*/
.breadcrumbs {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    white-space: nowrap;
    gap: 0.5rem;
    padding: 10px 0px;
    font-size: 18px;
}

    .breadcrumbs > .seperator {
        font-family: isl-icons !important;
        font-style: normal;
        font-weight: normal !important;
        font-variant: normal;
        text-transform: none;
        line-height: 1;
        -webkit-font-smoothing: antialiased;
        padding: 0;
    }

        .breadcrumbs > .seperator:before {
            content: "\f10a";
        }

    .breadcrumbs > .current {
        color: var(--primary-color);
        font-weight: bold;
    }
/*----------------------------------------------*/
/*#endregion*/


/*#region BROADBAND LABEL*/
.is-broadband-label-heading { }
.is-broadband-label-subheading { }
.is-broadband-label-skip{ }
.is-broadband-section { }
.is-broadband-title {
    text-align: left;
}
    /*For Best Choice pill*/
    .is-broadband-title::before {
        left: 0 !important;
        width: 30% !important;
        text-align: center;
    }
.is-broadband-narrative {
    text-align: left;
}

.is-broadband-price {
    letter-spacing: 0;
    font-weight: bold;
    text-align: left;
}
.is-broadband-label-button {
    width: 100%;
}

.is-broadband-label-iframe {
    width: 100%;
    transform: scale(0.95);
}

/*----------------------------------------------*/
/*#endregion*/


/*#region SERVICE SELECTION*/
.grid section img {
    width: var(--image-width);
    margin: 20px 0;
}

/*WEB OFFERING*/
/*temp solution for 'moving to address' popup height requirement*/
#webOfferings {
    min-height: 700px;
}
.is-weboffering-section { }
.is-web-offering-heading { }
.is-web-offering-subheading { }
.is-offering-title {
    text-align: left;
}
.is-offering-image { }
.is-offering-narrative {
    text-align: left;
}
.is-offering-narrative ul {
    margin: 0 !important;
    padding-left: 1.5rem !important;
}

.is-offering-price {
    letter-spacing: 0;
    font-weight: bold;
    text-align: left;
}

.is-web-offering-button {
    width: 100%;
}

/*-----------------------------------*/
/*PRODUCT*/
.is-product-selection-container { }

/*allow 4 cards when extra wide monitor*/
@media (min-width: 1740px) {
    .is-product-selection-container {
        max-width: 1545px;
    }
}

.is-product-section { }
.is-product-heading { }
.is-product-subheading { }
.is-web-offering-title { }

.is-product-title {
    color: var(--product-text-color);
    font-size: var(--product-font-size);
    font-weight: var(--product-font-weight);
    text-decoration: var(--product-decoration);
    font-style: var(--product-style);
    height: var(--product-spacing);
    text-align: left;
}

.is-product-image { }
.image-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}
.is-product-narrative {
    text-align: left;
    margin-bottom: 10px;
}
    .is-product-narrative ul {
        margin: 0 !important;
        padding-left: 1.5rem !important;
    }

.is-optional-product { }

.is-new-customer-bundle-wrap {
    background-color: var(--card-wrap-color);
    padding-bottom: 5px;
    display: flex;
}

.is-add-optional-service-button {
    width: 100%;
}
.is-remove-optional-service-button {
    width: 100%;
}
/*-----------------------------------*/
/*OPTIONS*/
.is-option-group {
    width: 100%;
    padding-bottom: 50px;
}

    .is-option-group:last-child {
        padding-bottom: 0;
    }

.is-option-group-title {
    margin: 5px 0 15px;
    color: var(--option-group-text-color);
    font-size: var(--option-group-font-size);
    font-weight: var(--option-group-font-weight);
    text-decoration: var(--option-group-decoration);
    font-style: var(--option-group-style);
    text-align: left;
}

/* Compare link styling */
.compare-options-link {
    background: none;
    border: none;
    padding: 0;
    color: var(--button-background-color);
    text-decoration: none;
    cursor: pointer;
    font-weight: 500;
    font-size: 0.9rem;
    align-self: normal;
}

    .compare-options-link:hover {
        color: var(--primary-color-hover);
    }

    .compare-options-link.preview-mode {
        display: none;
    }

.is-option-group-narrative {
    text-align: left;
}

.is-option-group-error {
    margin: 0px 15px 20px 15px;
}

.is-option-container { }

.is-equipment-option-container {
    text-align: left;
    list-style-type: none;
    align-items:center;
}

.centered-list-container{
    display:flex;
    justify-content:center;
}

.is-option-input {
    position: absolute;
    top: 0;
    visibility: hidden;
}

.is-option-state-caption,
.is-option-action-caption {
    font-size: var(--option-caption-font-size);
    font-weight: var(--option-caption-font-weight);
}

    .is-option-input:nth-child(1).checked ~ .is-option {
        opacity: 1;
        background-color: var(--option-background-color-selected);
    }

        .is-option-input:nth-child(1).checked ~ .is-option:not(.disabled):hover {
            opacity: 1;
            background-color: var(--option-background-color-hover);
        }

        .is-option-input:nth-child(1).checked ~ .is-option .is-option-title,
        .is-option-input:nth-child(1).checked ~ .is-option .is-option-description,
        .is-option-input:nth-child(1).checked ~ .is-option .is-option-description a,
        .is-option-input:nth-child(1).checked ~ .is-option .is-option-price,
        .is-option-input:nth-child(1).checked ~ .is-option .is-option-state-caption,
        .is-option-input:nth-child(1).checked ~ .is-option .is-option-action-caption {
            color: var(--option-color-selected);
        }

.is-option {
    overflow: hidden;
    display: block;
    padding: 0.5em 1em;
    background: var(--option-background-color);
    position: relative;
    margin-right: 0.2em;
    border-radius: var(--option-roundness);
    color: var(--option-color);
    cursor: pointer;
    margin: 0 0 2px;
}

    .is-option.checked {
        background-color: var(--option-background-color-selected);
        color: var(--option-color-selected);
    }

        .is-option.checked .is-option-title,
        .is-option.checked .is-option-description,
        .is-option.checked .is-option-description a,
        .is-option.checked .is-option-price,
        .is-option.checked .is-option-state-caption,
        .is-option.checked .is-option-action-caption {
            color: var(--option-color-selected);
        }

        .is-option.checked:hover {
            background-color: var(--option-background-color-hover);
        }

    .is-option.disabled {
        cursor: not-allowed;
        opacity: 0.4;
    }

        .is-option.disabled.checked {
            cursor: not-allowed;
            opacity: 1;
        }

            .is-option.disabled.checked:hover {
                background-color: var(--option-background-color-selected);
            }

    .is-option.compare-options-card {
        cursor: default;
        opacity: 1;
    }

@media (max-width: 600px) {
    .is-option.checked:hover {
        background-color: var(--option-background-color-selected);
    }
}

@media (min-width: 601px) {
    .is-option:not(.disabled):hover {
        background-color: var(--option-background-color-hover);
    }

        .is-option:not(.disabled):hover .is-option-title,
        .is-option:not(.disabled):hover .is-option-description,
        .is-option:not(.disabled):hover .is-option-description a,
        .is-option:not(.disabled):hover .is-option-price,
        .is-option:not(.disabled):hover .is-option-state-caption,
        .is-option:not(.disabled):hover .is-option-action-caption {
            color: var(--option-color-hover);
        }
}

.is-option:not(.disabled):hover > * > .is-option-state-caption {
    display: none;
}

.is-option:not(.disabled):hover > * > .is-option-action-caption {
    display: block;
}

.is-option > * > .is-option-action-caption {
    display: none;
}

.is-option > * > .is-option-state-caption {
    display: block;
}

.is-option-title, .is-option-description, .is-option-price {
    display: block;
    text-align: left;
}

.is-option-title {
    font-weight: bold;
    font-size: var(--option-title-font-size);
}

.is-option-description {
    font-weight: normal;
    font-size: var(--option-description-font-size);
    line-height: 20px;
}

    .is-option-description a {
        text-decoration: underline;
    }

.is-option-price {
    color: var(--option-price-color);
    font-size: var(--option-price-font-size);
    font-weight: bold;
    padding: 15px 0 0 0;
}

/*-----------------------------------*/
/*TOTAL PRICE*/

.is-total-price {
    position: fixed;
    right: -40px;
    top: 261px;
    font-weight: bold;
    padding: 10px 34px 10px 0 !important;
    width: 165px;
    z-index: 999;
    line-height: 22px;
    font-size: 18px !important;
}

@media (max-width:600px) {
    .is-total-price {
        right: auto;
        top: initial;
        padding: 10px !important;
        width: 100%;
        position: sticky;
        bottom: 0;
    }

        .is-total-price br {
            display: none;
        }
}

/*-----------------------------------*/
/*MISC*/

@media (max-width:600px) {
    .is-finish-selection-button {
        display: none;
    }
}
/*----------------------------------------------*/
/*#endregion*/


/*#region SUMMARY*/
/*SUMMARY*/
.is-panel-heading {
    padding: 10px 0px;
    border-bottom: 2px solid var(--primary-color);
    margin-bottom: 20px;
}

.is-summary-details-heading { }

.is-panel-body {
    padding: 0px;
    margin-bottom: 10px;
}

.is-summary-details-table {
    width: 100%;
    margin-bottom: 30px;
    border: none;
    color: inherit;
}

    .is-summary-details-table tr td {
        padding: 5px 8px;
    }

.is-summary-item-heading th {
    border-bottom: 2px solid var(--medium-border);
    padding: 10px 8px;
    font-weight: normal;
}

.is-summary-item-name-heading { }

.is-summary-item-price-heading, .is-summary-item-price {
    text-align: right;
}

.is-summary-offering-title { }

.is-summary-product-title {
    border-top: 1px solid var(--light-border);
}

    .is-summary-product-title td {
        padding-top: 20px !important;
    }

@media (max-width:405px) {
    .is-summary-details-table h4 {
        font-size: 14px;
    }

    .is-summary-product-title h4 {
        font-size: 16px !important;
    }
}

.is-summary-item-title { }

.is-summary-indent {
    text-indent: 30px;
}

@media (max-width: 768px) {
    .is-summary-indent {
        padding-left: 30px !important;
        text-indent: 0px;
    }
}

.is-negative-price { }

/*-----------------------------------*/
/*ORDER SUMMARY*/

.is-order-summary {
    position: sticky;
    top: 0;
}

.is-summary-heading { }
.is-summary-order-number { }

.is-summary-subheading {
    padding-top: 14px;
    margin-bottom: -3px;
}

.is-order-summary .is-summary-left-column {
    text-align: left;
    padding-top: 10px;
    padding-bottom: 10px;
}

.is-order-summary .is-summary-right-column {
    text-align: right;
    padding-top: 10px;
    padding-bottom: 10px;
}

.is-summary-total-row { }

.is-summary-total-top {
    border-top: 1px solid var(--medium-border);
    margin: 0;
}

.is-summary-total-bottom {
    border-top: 2px solid var(--medium-border);
    margin: 0;
}

.is-summary-total-row h4 {
    font-weight: bold;
}

.is-summary-discount-price { }
.is-summary-details-button { }
/*----------------------------------------------*/
/*#endregion*/


/*#region CHECKOUT*/
/*CHECKOUT*/
.is-checkout-container { }
.is-checkout-title { }
.is-checkout-order-number { }

.pending-step {
    opacity: 0.5;
}

.is-checkout-check {
    position: absolute;
    top: 50%;
    left: -60px;
    transform: translateY(-50%);
}

.is-checkout-edit { }
.is-checkout-heading { }

.is-checkout-subheading {
    font-family: var(--font-family-style);
    font-weight: bold;
    color: var(--primary-color);
}

.is-required-field { }

.required-star {
    color: var(--required-color);
}

.validation-msg-container {
    font-size: 0.875em;
    color: var(--required-color);
}

.is-popover-container.order-number-tooltip > .is-popover.is-popover-top {
    transform: translateX(-90%) !important;
}

@media (max-width:760px) {
    .is-popover-container.order-number-tooltip > .is-popover.is-popover-top {
        transform: none !important;
        left: 0% !important;
    }
}

.is-checkout-submit-button { }
/*-----------------------------------*/
/*SERVICE ADDRESS*/
/*-----------------------------------*/
/*BILLING*/
.is-billing-contact-heading { }
.is-text-message-container { }
.is-secondary-contact-checkbox-container { }
.is-billing-secondary-contact-heading { }
.is-service-address-checkbox-container { }
/*-----------------------------------*/
/*CREDIT CHECK*/
.is-credit-agreement-checkbox-container { }
/*-----------------------------------*/
/*WEB USER*/
.is-password-requirements {
    padding-bottom: 15px;
    font-size: 14px;
}

.togglePassword {
    margin-left: -30px;
    display: inline;
}

/*remove Edge password reveal control*/
::-ms-reveal {
    display: none;
}

.is-paperless-description { }
.is-paperless-checkbox-container { }

#paperless:disabled + label {
    opacity: 0.7;
    cursor: not-allowed;
}
/*-----------------------------------*/
/*PORT IN*/
.is-phone-number-heading { }
.is-phone-number-subheading { } 
.is-new-number-checkbox-container { } 
.is-new-number-info { }
.is-transfer-number-checkbox-container { }
.is-transfer-number-info { } 
.is-wireless-checkbox-container { }
.hidden {
    visibility: hidden;
    display: none;
}
.is-unavailable-number-warning {
    font-weight: bold;
}

.is-phone-line-label {
    font-weight: bold;
}
/*-----------------------------------*/
/*PAYMENT*/
.is-credit-card-container { }
.is-bank-account-container { }
.is-card-loading-container { }

.creditCardFormiFrame {
    border: none;
    overflow: hidden;
    width: 100%;
    height: 600px;
}

.is-bank-account-class-container { }
/*-----------------------------------*/
/*RECURRING PAYMENT*/
.is-recurring-payment-option-container { }
/*-----------------------------------*/
/*APPOINTMENT*/
.is-phone-number-label { }
.is-schedule-appointment-header { } 
.is-optional-bottom-text { }
/*-----------------------------------*/
/*MEMBERSHIP*/
.is-membership-selection-heading { }
.is-membership-selection-description { }
.is-optional-joint-member-text { }

.is-membership-button {
    overflow: hidden;
    display: block;
    padding: 0.5em;
    background: none;
    position: relative;
    margin-right: 0.2em;
    border-radius: 0.25em;
    cursor: pointer;
    border: 1px solid var(--dark-border);
    color: var(--main-text-color) !important;
    margin: 0 0 2px;
    width: 100%;
}

.is-membership-button-clicked,
.is-membership-button-clicked:active:focus,
.is-membership-button-clicked:focus,
.is-membership-button-clicked:hover {
    background-color: var(--primary-color);
    border: 1px solid var(--primary-color);
    color: #ffffff !important;
}

.is-membership-name {
    color: #5B5B5B;
    background-color: #EBEBE4 !important;
    pointer-events: none;
}
/*-----------------------------------*/
/*CPNI*/
.is-CPNI-description { }
/*-----------------------------------*/
/*QUESTIONS*/
/*-----------------------------------*/
/*CONFIRMATION*/
.is-confirmation-description { }
.is-terms-conditions-container { }
.is-confirmation-success { }
.is-confirmation-failed { }
/*----------------------------------------------*/
/*#endregion*/


/*#region INPUT/SELECTIONS*/

input[type=text],
input[type=date],
input[type=email],
input[type=tel],
input[type=password],
select {
    padding: 10px;
    background-color: #ffffff;
    line-height: 1.2;
    width: 100%;
    border-radius: 0px;
    font-size: 16px;
}

    select:disabled {
        opacity: 0.7;
        cursor: not-allowed;
    }

input, select {
    width: 100%;
    margin-bottom: 5px;
    font-family: var(--font-family-style);
}

.input-label {
    --container-size: calc(var(--option-title-font-size) * .95);
    display: inline-flex;
    align-items: baseline;
    cursor: pointer;
    position: relative;
    padding-left: 25px;
    font-family: var(--font-family-style);
    gap: 0.5rem;
}

    .input-label.option-group-box {
        --shape: 0;
        padding-left: calc(var(--container-size) * 1.25);
    }

    .input-label.option-group-radio {
        --shape: 50%;
        padding-left: calc(var(--container-size) * 1.25);
    }

input:not([disabled]) + .input-label:hover {
    color: var(--secondary-text-color) !important;
    transition: all .4s;
}

/* ----- Hide Native Inputs ----- */
input[type="radio"],
input[type=checkbox] {
    display: none;
}

/* ----- Default Custom box/circle ----- */
.input-label::before {
    content: "";
    width: 20px;
    height: 20px;
    position: absolute;
    left: 0;
    background-color: #fff;
    border: 1px solid var(--dark-border);
}

.radio {
    margin-top: 0px !important;
}

    .radio .input-label {
        display: inline-block;
    }

        .radio .input-label::before {
            border-radius: 10px;
        }

.input-label.option-group-box::before,
.input-label.option-group-radio::before {
    width: var(--container-size);
    height: var(--container-size);
    margin-top: calc(var(--container-size) * 0.25);
    border-radius: var(--shape, 0);
}

/* ----- Checked Radio Circle: ----- */
.input-label.selected::before,
input[type="radio"]:checked ~ label.input-label::before {
    content: "\2022"; /* Bullet */
    color: var(--secondary-text-color);
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5em;
}

/* ----- OptionGroup Radio Button Style----- */
.input-label.option-group-radio.selected::before,
.input-label.option-group-radio.checked::before,
input[type="radio"]:checked ~ label.input-label.option-group-radio::before {
    content: "";
    display: flex;
    align-items: center;
    justify-content: center;
}

.input-label.option-group-radio.selected::after,
.input-label.option-group-radio.checked::after,
input[type="radio"]:checked ~ label.input-label.option-group-radio::after {
    content: "";
    align-items: center;
    justify-content: center;
    width: calc(0.50 * var(--container-size));
    height: calc(0.50 * var(--container-size));
    border-radius: 50%;
    position: absolute;
    left: calc(0.25 * var(--container-size));
    top: calc(0.50 * var(--container-size));
    background-color: var(--primary-color);
}

    input [type="radio"]:checked ~ label.input-label {
    cursor: not-allowed;
}

/* ----- Checked Checkbox: ----- */
.checkbox input:checked + .input-label::before,
input[type="checkbox"]:checked ~ label.input-label::before,
.input-label.option-group-box.checked::before {
    content: "\2713";
    color: var(--primary-color);
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1em;
}

.input-label.option-group-box.checked::before,
label.input-label.option-group-box.checked::before {
    font-size: calc(var(--container-size) * 1);
}

/* ----- Disabled Inputs ----- */
input[type="radio"]:checked:disabled ~ label.input-label,
input[type="radio"]:checked:disabled ~ label.input-label::before,
input[type="checkbox"]:checked:disabled ~ label.input-label,
input[type="checkbox"]:checked:disabled ~ label.input-label::before,
label.input-label.checked.disabled,
label.input-label.checked.disabled::before,
label.input-label.disabled,
label.input-label.disabled::before {
    cursor: not-allowed;
}

/* ----- Preview Mode: Hide Circle/Box, Disable Cursor ----- */

.preview-mode:hover,
.preview-mode .input-label,
.preview-mode .input-label::before,
.preview-mode .input-label.option-group-radio::before,
.preview-mode .input-label.option-group-box::before {
    cursor: not-allowed;
}

    .preview-mode .input-label,
    .preview-mode .input-label::before,
    .preview-mode .input-label.option-group-radio::before,
    .preview-mode .input-label.option-group-box::before {
        padding-left: 0px;
    }

        .preview-mode .input-label::before,
        .preview-mode .input-label.option-group-radio::before,
        .preview-mode .input-label.option-group-box::before,
        .preview-mode .input-label.option-group-radio::after {
            display: none !important;
        }

/*----- Previously Selected When Clicked Off ------*/

.edit-mode .input-label.selected {
}

.edit-mode.previously-selected {
    opacity: 0.5;
}

select::selection {
    background-color: var(--secondary-text-color);
}

::selection {
    background: var(--main-text-color);
    color: white;
}

::-moz-selection {
    background: var(--main-text-color);
    color: white;
}

.minusButton, .plusButton {
    background-color: var(--button-background-color);
    border-color: var(--button-background-color);
    color: var(--option-color-selected);
    font-size: 18px;
    font-weight: 900;
    width: 40px; /* or 36px depending on design */
    height: 40px;
    border-radius: 50%;
    border-style: solid;
    padding: 0; /* ensures perfect circle */
    display: flex;
    align-items: center;
    justify-content: center;
}

    .minusButton:hover, .plusButton:hover {
        background-color: var(--button-background-color-hover);
        border-color: var(--button-background-color-hover);
        color: var(--button-color-hover);
    }

    .minusButton:disabled, .plusButton:disabled {
        background-color: var(--button-background-color-disabled);
        border-color: var(--button-background-color-disabled);
        color: var(--button-color-disabled);
    }

        .minusButton:disabled:hover, .plusButton:disabled:hover {
            background-color: var(--button-background-color-disabled);
            border-color: var(--button-background-color-disabled);
            color: var(--button-color-disabled);
            cursor: not-allowed;
        }

.quantity-display {
    display: inline-block;
    min-width: 2.5ch;
    text-align: center;
}
/*----------------------------------------------*/
/*#endregion*/


/*#region SECTION*/

section {
    position: relative;
    width: 100%;
    padding: 10px 0 60px;
}

    section h1 {
        font-size: 34px;
        color: var(--main-text-color);
        text-align: center;
        margin-top: 0;
        margin-bottom: 40px;
        letter-spacing: 6px;
        font-weight: bold;
        line-height: 1.2;
    }

    section h2 {
        text-align: center;
        font-size: 25px;
        line-height: 1.2;
        position: relative;
        padding: 5px 0;
    }

@media (max-width:370px) {
    section h2 {
        font-size: 19px;
    }
}

section h3 {
    text-align: center;
    margin-top: 35px;
    font-size: 26px;
    color: var(--main-text-color);
    line-height: 1.2;
    letter-spacing: 6px;
    width: 100%;
    font-weight: 400;
    position: inherit;
}

section h4 {
    text-align: center;
    margin-top: 35px;
    font-size: 20px;
    color: var(--main-text-color);
    line-height: 1.2;
    letter-spacing: 3px;
    width: 100%;
    font-weight: 400;
    position: relative;
}

section h5 a {
    color: var(--main-text-color);
    text-decoration: underline;
}

    section h5 a:hover {
        color: var(--secondary-text-color);
    }

section hr {
    color: var(--main-text-color);
    margin: 30px auto;
    background-color: var(--main-text-color);
    height: 1px;
    width: 106px;
    border: 0;
}

section p {
    text-align: center;
    font-size: 18px;
    width: 100%;
    margin: 0 auto 20px auto;
    color: var(--main-text-color);
    line-height: 30px;
    letter-spacing: 0;
    position: relative;
    font-weight: 400;
}

    section p a {
        color: var(--main-text-color);
        text-decoration: underline;
    }

        section p a:hover {
            color: var(--secondary-text-color);
        }
/*----------------------------------------------*/
/*#endregion*/


/*#region DROPDOWN*/
.is-dropdown {
    width: 100%;
    border: 1px solid #000000 !important;
    font-size: 16px !important;
    color: #000000;
    padding: 9px 10px 9px 15px !important;
    max-width: 100% !important;
    border-radius: 0.25rem;
    background-color: white;
}

.is-dropdown-content-header {
    border-bottom: 1px solid #000000;
    font-weight: bold;
    margin: 0.25rem 0;
    padding: 0.5rem 1rem !important;
}

.is-dropdown .is-dropdown-content {
    border: 1px solid #000000 !important;
    border-radius: 0.25rem;
    max-height: 250px;
    overflow: auto;
}

    .is-dropdown .is-dropdown-content > .is-select-option {
        padding: 0.75rem 1rem !important;
    }

        .is-dropdown .is-dropdown-content > .is-select-option:not(.selected):hover {
            background-color: var(--option-background-color-hover) !important;
            cursor: pointer;
            color: var(--option-color-hover);
        }

        .is-dropdown .is-dropdown-content > .is-select-option.selected {
            background-color: var(--option-background-color-selected) !important;
            color: var(--option-color-selected);
        }

.is-dropdown > .is-dropdown-main-content {
    padding-right: 20px !important;
}

.is-dropdown > .is-dropdown-arrow:before {
    font-family: isl-icons !important;
    font-style: normal;
    font-weight: normal !important;
    font-variant: normal;
    font-size: unset !important;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: '\f103' !important;
    right: 0.5rem !important;
}
/*-----------------------------------*/
/*#endregion*/


/*#region BLAZOR*/
h1:focus {
    outline: none;
}

#blazor-error-ui {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }

.blazor-error-boundary {
    background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNDkiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIG92ZXJmbG93PSJoaWRkZW4iPjxkZWZzPjxjbGlwUGF0aCBpZD0iY2xpcDAiPjxyZWN0IHg9IjIzNSIgeT0iNTEiIHdpZHRoPSI1NiIgaGVpZ2h0PSI0OSIvPjwvY2xpcFBhdGg+PC9kZWZzPjxnIGNsaXAtcGF0aD0idXJsKCNjbGlwMCkiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC0yMzUgLTUxKSI+PHBhdGggZD0iTTI2My41MDYgNTFDMjY0LjcxNyA1MSAyNjUuODEzIDUxLjQ4MzcgMjY2LjYwNiA1Mi4yNjU4TDI2Ny4wNTIgNTIuNzk4NyAyNjcuNTM5IDUzLjYyODMgMjkwLjE4NSA5Mi4xODMxIDI5MC41NDUgOTIuNzk1IDI5MC42NTYgOTIuOTk2QzI5MC44NzcgOTMuNTEzIDI5MSA5NC4wODE1IDI5MSA5NC42NzgyIDI5MSA5Ny4wNjUxIDI4OS4wMzggOTkgMjg2LjYxNyA5OUwyNDAuMzgzIDk5QzIzNy45NjMgOTkgMjM2IDk3LjA2NTEgMjM2IDk0LjY3ODIgMjM2IDk0LjM3OTkgMjM2LjAzMSA5NC4wODg2IDIzNi4wODkgOTMuODA3MkwyMzYuMzM4IDkzLjAxNjIgMjM2Ljg1OCA5Mi4xMzE0IDI1OS40NzMgNTMuNjI5NCAyNTkuOTYxIDUyLjc5ODUgMjYwLjQwNyA1Mi4yNjU4QzI2MS4yIDUxLjQ4MzcgMjYyLjI5NiA1MSAyNjMuNTA2IDUxWk0yNjMuNTg2IDY2LjAxODNDMjYwLjczNyA2Ni4wMTgzIDI1OS4zMTMgNjcuMTI0NSAyNTkuMzEzIDY5LjMzNyAyNTkuMzEzIDY5LjYxMDIgMjU5LjMzMiA2OS44NjA4IDI1OS4zNzEgNzAuMDg4N0wyNjEuNzk1IDg0LjAxNjEgMjY1LjM4IDg0LjAxNjEgMjY3LjgyMSA2OS43NDc1QzI2Ny44NiA2OS43MzA5IDI2Ny44NzkgNjkuNTg3NyAyNjcuODc5IDY5LjMxNzkgMjY3Ljg3OSA2Ny4xMTgyIDI2Ni40NDggNjYuMDE4MyAyNjMuNTg2IDY2LjAxODNaTTI2My41NzYgODYuMDU0N0MyNjEuMDQ5IDg2LjA1NDcgMjU5Ljc4NiA4Ny4zMDA1IDI1OS43ODYgODkuNzkyMSAyNTkuNzg2IDkyLjI4MzcgMjYxLjA0OSA5My41Mjk1IDI2My41NzYgOTMuNTI5NSAyNjYuMTE2IDkzLjUyOTUgMjY3LjM4NyA5Mi4yODM3IDI2Ny4zODcgODkuNzkyMSAyNjcuMzg3IDg3LjMwMDUgMjY2LjExNiA4Ni4wNTQ3IDI2My41NzYgODYuMDU0N1oiIGZpbGw9IiNGRkU1MDAiIGZpbGwtcnVsZT0iZXZlbm9kZCIvPjwvZz48L3N2Zz4=) no-repeat 1rem/1.8rem, #b32121;
    padding: 1rem 1rem 1rem 3.7rem;
    color: white;
}

    .blazor-error-boundary::after {
        content: "An error has occurred."
    }
/*-----------------------------------*/
/*#endregion*/


/*#region WEB POPUP*/
.is-web-popup {
    background-color: var(--popup-background-color);
    border: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    width: min(80vw, 30rem);
}

.is-web-popup-body {
    font-family: var(--font-family-style);
    text-align: center;
    font-size: 18px;
    color: var(--popup-text-color);
    line-height: 30px;
    letter-spacing: 0;
    font-weight: 400;
}

.is-web-popup-buttons {
    display: flex;
    gap: 0.25rem;
}

.is-web-popup-button { }

.is-popover {
    background-color: var(--popup-background-color) !important;
    color: var(--popup-text-color);
}

/* Compare Options Dialog Styling */
.compare-options-popup,
.compare-xc-options-popup {
    background-color: var(--popup-background-color);
    max-width: 800px !important;
    margin-top: 10px;
    max-height: 70vh;
}

.compare-options-container,
.compare-xc-options-container {
    display: grid;
    gap: 10px;
    width: 100%;
    max-height: 50vh;
    overflow-y: auto;
    padding: 10px;
    margin-bottom: 10px;
    overscroll-behavior: contain;
}


@media (max-width:600px) {
    .compare-options-popup {
        max-height: 95vh;
        align-self: flex-start;
    }

    .compare-options-container,
    .compare-xc-options-container {
        max-height: 70vh;
    }

    .compare-xc-options-popup {
        max-height: 70vh;
        align-self: flex-start;
    }
}

/*-----------------------------------*/
/*#endregion*/


    /*#region EXISTING CUSTOMER*/

    main:has(.is-existing-customer-app) {
        padding-bottom: 80px; /*padding on the bottom for iphone 'bounce'*/
        background-color: var(--body-background-color);
        min-height: 800px; /*to match the size needed for broadband labels popup*/
    }

    .is-existing-customer-app {
        margin-top: -20px;
    }
    /*darker backgrounds are hiding this container/spinner; make the background match to see*/
    .is-existing-customer-app .is-loading-container {
        background: var(--body-background-color) !important;
    }

    .is-transform-wrap {
        width: fit-content;
        transform: rotateX(180deg);
    }

    .is-existing-customer-bundle-wrap {
        background-color: var(--card-wrap-color);
        border-radius: var(--card-wrap-border-radius);
        padding-bottom: 5px;
        position: relative;
    }

        .is-existing-customer-bundle-wrap.removed-bundle {
            background-color: rgb(from var(--card-wrap-color) r g b / .4);
        }

    .is-bundle-row {
    }

    .is-existing-customer-bundle-title {
        color: var(--main-text-color);
        font-weight: bold;
    }

    .is-existing-customer-productcard {
        min-height: 60%;
        flex-shrink: 0;
        display: flex;
        flex-direction: column;
    }

    .is-existing-customer-productcard-titlearea {
        flex-shrink: 0;
    }

    .is-existing-customer-option-section {
    }

    .is-existing-customer-grid {
        width: 100%;
        text-align: center;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        align-content: space-around;
        color: var(--main-text-color);
        font-family: var(--font-family-style);
    }

        .is-existing-customer-grid section img {
            width: var(--image-width);
            margin: 20px 0;
        }

    .is-existing-customer-callin {
        font-weight: bold;
        font-style: italic;
    }

    .is-option-opacity {
        opacity: 0.3;
    }

    .text-right {
        text-align: right;
    }

    .form-switch .form-check-input {
        display: inherit;
    }

    .is-existing-customer-option-group {
    }

    .is-existing-option-container {
        display: flex;
        flex-wrap: nowrap;
        flex-direction: column
    }

    .is-existing-customer-option-container.disabled {
        cursor: not-allowed;
    }

    .is-existing-customer-dropdown-title {
        display: block;
        margin: 5px 0 15px;
        color: var(--option-group-text-color);
        font-size: var(--option-group-font-size);
        font-weight: var(--option-group-font-weight);
        text-decoration: var(--option-group-decoration);
        font-style: var(--option-group-style);
    }

    .is-existing-customer-option-container {
        margin-right: 5px;
    }

    .is-existing-customer-price-box {
        border: var(--card-border-thickness) solid var(--card-border-color);
        border-radius: 10px;
        padding: 10px 10px 10px;
        margin: 15px;
        color: var(--card-text-color);
        background-color: var(--card-background-color);
        min-width: 150px;
        justify-content: center;
        display: flex;
        align-items: center;
    }

    .fa-exchange :before {
        transform: rotate(90deg);
        display: inline-block;
    }

    .is-existing-customer-price-change {
        border-left: 1px solid #000000;
        padding-left: 10px;
        margin-left: 10px;
    }

.is-broadband-label-iframe-xc {
    -moz-user-select: none;
    -ms-user-select: none;
    -webkit-user-select: none;
    user-select: none;
    width: 375px;
    transform: scale(0.95);
}

    .is-existing-equipment {
    }

    .is-existing-customer-mobile-heading {
        display: flex;
        justify-content: end;
        align-items: baseline;
        gap: 1rem;
    }

    .is-existing-customer-button-width {
        width: 90%;
    }

    .xc-sticky-buttons {
        position: fixed;
        background-color: var(--body-background-color);
        z-index: 999;
    }

    @media (max-width:600px) {
        .xc-sticky-buttons {
            right: auto;
            top: initial;
            width: 100%;
            position: sticky;
            bottom: 0;
        }
    }
    /*-----------------------------------*/
    /*#endregion*/


    /*#region EXISTING CUSTOMER SUMMARY*/
    .is-existing-summary-left-column {
        text-align: left;
    }

    .is-existing-summary-right-column {
        text-align: right;
    }

    .is-existing-bottom-content {
        margin-top: 75px;
    }

    .is-existing-price-preview {
        display: flex;
        justify-content: center;
        gap: 1rem;
    }

    .is-existing-price-preview-item {
        padding: 0 10px;
        border: 1px solid rgba(196, 202, 203, 0.64);
        border-radius: 10px;
    }

    .is-estimated-bill-explanation {
        font-style: italic;
        padding-top: 0.5rem;
        font-size: 13px;
    }

    .is-existing-tooltip {
        float: right;
        height: 0;
        margin: 0 -8px;
    }

    .is-existing-price-preview-item-double {
        display: flex;
    }

    .is-existing-price-preview-item.left {
        border-radius: 10px 0 0 10px;
    }

    .is-existing-price-preview-item.right {
        border-radius: 0 10px 10px 0;
    }

    .is-existing-summary-button-group {
        margin-top: 10px;
    }

    .is-existing-back-button:not(:hover) {
        background-color: transparent;
        color: var(--main-text-color);
    }

    /*-----------------------------------*/
    /*#endregion*/