.section-bxb-calc {
    background: #f5f5f5;
    color: #2f2f30;
    padding: 0 0 52px;
}

.section-bxb-calc * {
    box-sizing: border-box;
}

.section-bxb-calc .bxb-calc-legacy-anchor {
    display: block;
    position: relative;
    top: -20px;
}

.section-bxb-calc .bxb-calc-header {
    margin: 0 0 28px;
    font-size: 54px;
    font-weight: 700;
    line-height: 1;
}

.section-bxb-calc .bxb-calc-row {
    display: flex;
    gap: 34px;
    align-items: stretch;
}

.section-bxb-calc .bxb-calc-main {
    flex: 1 1 auto;
    min-width: 0;
}

.section-bxb-calc .bxb-calc-aside {
    display: flex;
    flex: 0 0 417px;
    flex-direction: column;
    gap: 16px;
}

.section-bxb-calc .bxb-calc-form {
    height: 100%;
    margin: 0;
    padding: 43px 34px;
    background: #fff;
}

.section-bxb-calc .bxb-calc-form-row {
    display: flex;
    gap: 62px;
    position: relative;
}

.section-bxb-calc .bxb-calc-fields {
    flex: 1 1 443px;
    max-width: 443px;
    min-width: 0;
}

.section-bxb-calc .bxb-calc-summary {
    display: flex;
    flex: 0 0 294px;
    flex-direction: column;
    gap: 15px;
    min-width: 0;
}

.section-bxb-calc .bxb-calc-field-row {
    display: flex;
    align-items: center;
    min-width: 0;
    margin: 0 0 23px;
    padding: 0;
    border: 0;
}

.section-bxb-calc .bxb-calc-dimensions-row[hidden] {
    display: none;
}

.section-bxb-calc .bxb-calc-field-row > label,
.section-bxb-calc .bxb-calc-field-row > legend,
.section-bxb-calc .bxb-calc-field-row > .bxb-calc-field-label {
    flex: 0 0 146px;
    margin: 0;
    padding: 0;
    color: #2f2f30;
    font-size: 16px;
    font-weight: 400;
    line-height: normal;
}

.section-bxb-calc .bxb-calc-control {
    flex: 1 1 auto;
    min-width: 0;
}

.section-bxb-calc input[type="text"] {
    width: 100%;
    height: 40px;
    margin: 0;
    padding: 9px 14px 12px;
    border: 0;
    border-radius: 0;
    outline: 0;
    background: #f5f5f5;
    color: #333;
    font: inherit;
    font-size: 15px;
    line-height: normal;
}

.section-bxb-calc input[type="text"]::placeholder {
    color: rgba(51, 51, 51, .7);
}

.section-bxb-calc input.error,
.section-bxb-calc select.error + .select2 .select2-selection {
    box-shadow: inset 0 0 0 1px #e42313;
}

.section-bxb-calc .bxb-calc-control-with-unit {
    display: flex;
    gap: 9px;
}

.section-bxb-calc .bxb-calc-unit {
    display: flex;
    flex: 0 0 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    color: #000;
    font-size: 16px;
}

.section-bxb-calc .bxb-calc-dimensions {
    display: flex;
    gap: 9px;
}

.section-bxb-calc .bxb-calc-dimensions input {
    min-width: 0;
}

.section-bxb-calc .bxb-calc-radios {
    display: flex;
    align-items: center;
    gap: 13px;
}

.section-bxb-calc .bxb-calc-radios input {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
}

.section-bxb-calc .bxb-calc-radios label {
    display: inline-flex;
    align-items: center;
    margin: 0;
    color: #333;
    cursor: pointer;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: -.03em;
    white-space: nowrap;
}

.section-bxb-calc .bxb-calc-radios label::before {
    width: 24px;
    height: 24px;
    margin-right: 8px;
    border: 1px solid #757f88;
    border-radius: 50%;
    background: #fff;
    content: "";
}

.section-bxb-calc .bxb-calc-radios input:checked + label::before {
    border-color: #757f88;
    background: radial-gradient(circle, #002e5a 0 7px, #fff 7.5px);
}

.section-bxb-calc .bxb-calc-radios input:focus-visible + label::before {
    outline: 2px solid #002e5a;
    outline-offset: 2px;
}

.section-bxb-calc .bxb-calc-categories {
    display: none;
    align-items: center;
    gap: 10px;
    margin: 0 0 27px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 400;
}

.section-bxb-calc.supports-alternative .bxb-calc-categories {
    display: flex;
}

.section-bxb-calc .bxb-calc-categories input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.section-bxb-calc .bxb-calc-switch {
    position: relative;
    width: 40px;
    height: 24px;
    border-radius: 12px;
    background: #e1e3e5;
    transition: background .2s;
}

.section-bxb-calc .bxb-calc-switch::after {
    position: absolute;
    top: 1px;
    left: 1px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #979fa6;
    content: "";
    transition: transform .2s, background .2s;
}

.section-bxb-calc .bxb-calc-categories input:checked + .bxb-calc-switch {
    background: #b7c7d5;
}

.section-bxb-calc .bxb-calc-categories input:checked + .bxb-calc-switch::after {
    background: #002e5a;
    transform: translateX(16px);
}

.section-bxb-calc .bxb-calc-category-picker {
    display: none;
    position: relative;
    z-index: 10;
    width: 100%;
    margin: -12px 0 27px;
    overflow-anchor: none;
}

.section-bxb-calc.supports-alternative .bxb-calc-category-picker.is-enabled {
    display: block;
}

.section-bxb-calc .bxb-calc-category-picker-label {
    display: block;
    margin: 0 0 5px;
    color: #2f2f30;
    font-size: 16px;
    font-weight: 400;
    line-height: normal;
}

.section-bxb-calc .bxb-calc-category-toggle {
    width: 100%;
    min-height: 40px;
    padding: 7px 14px;
    border: 0;
    border-radius: 0;
    background: #f5f5f5;
    color: #2f2f30;
    text-align: left;
}

.section-bxb-calc .bxb-calc-category-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}

.section-bxb-calc .bxb-calc-category-tags {
    display: flex;
    flex: 1 1 auto;
    flex-wrap: wrap;
    gap: 4px;
    min-width: 0;
}

.section-bxb-calc .bxb-calc-category-tag {
    display: inline-flex;
    max-width: 100%;
    align-items: center;
    gap: 4px;
    padding: 2px 5px;
    border: 1px solid transparent;
    border-radius: 5px;
    background: #fff;
    color: #333;
    font-size: 12px;
    line-height: 14px;
}

.section-bxb-calc .bxb-calc-category-tag.is-alt-only {
    border-color: #e42313;
}

.section-bxb-calc .bxb-calc-category-tag-remove {
    display: inline-flex;
    width: 14px;
    height: 14px;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 0;
    background: transparent;
    color: #979fa6;
    cursor: pointer;
    font: inherit;
    font-size: 18px;
    line-height: 12px;
}

.section-bxb-calc .bxb-calc-category-arrow {
    display: block;
    flex: 0 0 auto;
    width: 0;
    height: 0;
    margin-left: 8px;
    border-top: 6px solid #979797;
    border-right: 6px solid transparent;
    border-left: 6px solid transparent;
}

.section-bxb-calc .bxb-calc-category-dropdown {
    display: none;
    position: absolute;
    z-index: 20;
    top: 100%;
    left: 0;
    width: 100%;
    height: 189px;
    overflow: clip;
    border: 1px solid #aaa;
    background: #fff;
}

.section-bxb-calc .bxb-calc-category-picker.is-open .bxb-calc-category-dropdown {
    display: flex;
    flex-direction: column;
}

.section-bxb-calc .bxb-calc-category-dropdown-head {
    display: flex;
    flex: 0 0 40px;
    align-items: center;
    gap: 8px;
    padding: 5px 8px 5px 12px;
    background: #f5f5f5;
}

.section-bxb-calc .bxb-calc-category-search {
    width: 100%;
    min-width: 0;
    height: 30px;
    padding: 0;
    border: 0;
    outline: 0;
    background: transparent;
    color: #2f2f30;
    font: inherit;
    font-size: 14px;
}

.section-bxb-calc .bxb-calc-category-search::-webkit-search-cancel-button {
    display: none;
}

.section-bxb-calc .bxb-calc-category-search::placeholder {
    color: #979797;
    opacity: 1;
}

.section-bxb-calc .bxb-calc-category-search-clear {
    display: flex;
    flex: 0 0 24px;
    width: 24px;
    height: 24px;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 0;
    background: transparent;
    color: #979fa6;
    cursor: pointer;
    font-size: 22px;
    line-height: 1;
}

.section-bxb-calc .bxb-calc-category-search-clear[hidden] {
    display: none;
}

.section-bxb-calc .bxb-calc-category-dropdown-close {
    display: flex;
    flex: 0 0 30px;
    width: 30px;
    height: 30px;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.section-bxb-calc .bxb-calc-category-dropdown-close .bxb-calc-category-arrow {
    margin-left: 0;
    transform: rotate(180deg);
}

.section-bxb-calc .bxb-calc-category-options {
    flex: 1 1 0;
    min-height: 0;
    overflow-y: auto;
    overflow-anchor: none;
    overscroll-behavior: contain;
    padding: 5px 0;
}

.section-bxb-calc .bxb-calc-category-option {
    display: flex;
    align-items: center;
    gap: 8px;
    min-height: 31px;
    margin: 0;
    padding: 3px 10px;
    color: #333;
    cursor: pointer;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
}

.section-bxb-calc .bxb-calc-category-option:hover {
    background: #f5f5f5;
}

.section-bxb-calc .bxb-calc-category-option[hidden] {
    display: none;
}

.section-bxb-calc .bxb-calc-category-empty {
    margin: 0;
    padding: 12px 10px;
    color: #979797;
    font-size: 14px;
}

.section-bxb-calc .bxb-calc-category-empty[hidden] {
    display: none;
}

.section-bxb-calc .bxb-calc-category-option input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
}

.section-bxb-calc .bxb-calc-category-checkbox {
    position: relative;
    flex: 0 0 18px;
    width: 18px;
    height: 18px;
    border: 1px solid #979fa6;
    background: #fff;
}

.section-bxb-calc .bxb-calc-category-option input:checked + .bxb-calc-category-checkbox {
    border-color: #e42313;
}

.section-bxb-calc .bxb-calc-category-option input:checked + .bxb-calc-category-checkbox::after {
    position: absolute;
    top: 2px;
    left: 5px;
    width: 5px;
    height: 9px;
    border-right: 2px solid #e42313;
    border-bottom: 2px solid #e42313;
    content: "";
    transform: rotate(45deg);
}

.section-bxb-calc .bxb-calc-category-warning {
    display: none;
    margin: 5px 0 0;
    color: #e42313;
    font-size: 14px;
    line-height: 1.1;
}

.section-bxb-calc .bxb-calc-category-warning.is-visible {
    display: block;
}

.section-bxb-calc .bxb-calc-category-picker.is-open .bxb-calc-category-warning {
    display: none;
}

.section-bxb-calc .bxb-calc-limits {
    margin: 0 0 16px;
    color: rgba(47, 47, 48, .5);
    font-size: 12px;
    line-height: 1;
}

#bxbCalcErrors {
    margin: -12px 0 14px 146px;
    color: #e42313;
    font-size: 12px;
}

#bxbCalcErrors:empty {
    display: none;
}

#bxbCalcErrors p {
    margin: 0 0 4px;
}

.section-bxb-calc .bxb-calc-results {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.section-bxb-calc .bxb-calc-result-card {
    display: flex;
    min-height: 132px;
    flex-direction: column;
    gap: 5px;
    padding: 20px 21px;
    background: #f5f5f5;
}

.section-bxb-calc .bxb-calc-result-title {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 20px;
    font-weight: 700;
    line-height: normal;
    white-space: nowrap;
}

.section-bxb-calc .bxb-calc-result-title img {
    display: block;
    width: 19px;
    height: 19px;
}

.section-bxb-calc .bxb-calc-result-price {
    color: #e42313;
    font-size: 21px;
    font-weight: 700;
    letter-spacing: .05em;
    line-height: normal;
}

.section-bxb-calc .bxb-calc-result-time {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: .05em;
    line-height: normal;
}

.section-bxb-calc .bxb-calc-result-note {
    font-size: 14px;
    font-weight: 400;
    line-height: normal;
}

.section-bxb-calc .usa-only {
    display: none;
}

.section-bxb-calc.supports-alternative .usa-only {
    display: flex;
}

.section-bxb-calc .bxb-calc-result-card--alternative {
    display: none;
}

.section-bxb-calc.route-both .bxb-calc-result-card--alternative,
.section-bxb-calc.route-alt .bxb-calc-result-card--alternative {
    display: flex;
}

.section-bxb-calc.route-direct .bxb-calc-result-card--alternative {
    display: none;
}

.section-bxb-calc.route-alt .bxb-calc-result-card--standard {
    display: none;
}

.section-bxb-calc .bxb-calc-account-button {
    display: flex;
    min-height: 55px;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    background: #e42313;
    color: #fff !important;
    font-size: 16px;
    font-weight: 700;
    line-height: normal;
    text-align: center;
    text-decoration: none !important;
}

.section-bxb-calc .bxb-calc-account-button:hover {
    opacity: .9;
}

.section-bxb-calc .bxb-calc-disclaimer {
    margin: -4px 0 0;
    color: rgba(47, 47, 48, .5);
    font-size: 12px;
    line-height: 1;
}

.section-bxb-calc .bxb-calc-aside > a {
    display: flex;
    flex-direction: column;
    padding: 27px 28px;
    overflow: hidden;
    background: #fff;
    color: #2f2f30 !important;
    text-decoration: none !important;
}

.section-bxb-calc .bxb-calc-promo {
    gap: 16px;
}

.section-bxb-calc .bxb-calc-services {
    gap: 17px;
}

.section-bxb-calc .bxb-calc-aside-title {
    display: flex;
    width: 100%;
    align-items: center;
    gap: 15px;
}

.section-bxb-calc .bxb-calc-aside-title > img {
    display: block;
    flex: 0 0 32px;
    width: 32px;
    height: 32px;
}

.section-bxb-calc .bxb-calc-aside-title strong {
    flex: 1 1 auto;
    font-size: 18px;
    line-height: normal;
}

.section-bxb-calc .bxb-calc-aside-title .bxb-calc-arrow {
    flex-basis: 33px;
    width: 33px;
    height: 30px;
    margin-left: 7px;
}

.section-bxb-calc .bxb-calc-aside p {
    margin: 0;
    font-size: 16px;
    line-height: normal;
}

.section-bxb-calc .bxb-calc-promo-code {
    display: flex;
    width: 100%;
    min-height: 42px;
    align-items: center;
    justify-content: center;
    border: 2px dashed #e42313;
    color: #e42313;
    font-size: 20px;
    font-weight: 700;
}

.section-bxb-calc .bxb-calc-aside > a:hover {
    box-shadow: 0 5px 20px rgba(0, 46, 90, .08);
}

.section-bxb-calc .bxb-calc-form-overview {
    display: none;
    position: absolute;
    z-index: 5;
    inset: 0;
    background: rgba(255, 255, 255, .55);
}

.section-bxb-calc .bxb-calc-form-row.blocked .bxb-calc-form-overview {
    display: block;
}

.section-bxb-calc .select2-container--default .select2-selection--single,
.section-bxb-calc .select2-container .select2-selection--single {
    height: 40px;
    padding: 10px 14px;
    border: 0;
    border-radius: 0;
    outline: 0;
    background: #f5f5f5;
    box-shadow: none;
}

.section-bxb-calc .select2-container--default .select2-selection--single .select2-selection__rendered {
    padding: 0 20px 0 0;
    color: #333;
    font-size: 15px;
    font-weight: 400;
    line-height: 20px;
}

.section-bxb-calc .select2-container--default .select2-selection--single .select2-selection__placeholder {
    color: rgba(51, 51, 51, .7);
}

.section-bxb-calc .select2-container--default .select2-selection--single .select2-selection__arrow {
    top: 6px;
    right: 8px;
}

.section-bxb-calc .select2-container--default .select2-selection--single .select2-selection__arrow b {
    border-width: 6px 6px 0;
    border-color: #979797 transparent transparent;
}

.section-bxb-calc .select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
    border-width: 0 6px 6px;
    border-color: transparent transparent #979797;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    background: #e42313;
    color: #fff;
}

.select2-container--open .select2-dropdown--below {
    font-size: 14px;
}

@media screen and (max-width: 1360px) {
    .section-bxb-calc {
        padding-right: 20px;
        padding-left: 20px;
    }

    .section-bxb-calc .bxb-calc-row {
        gap: 24px;
    }

    .section-bxb-calc .bxb-calc-form-row {
        gap: 34px;
    }

    .section-bxb-calc .bxb-calc-aside {
        flex-basis: 350px;
    }
}

@media screen and (max-width: 1100px) {
    .section-bxb-calc .bxb-calc-aside {
        display: none;
    }

    .section-bxb-calc .bxb-calc-fields {
        max-width: none;
        flex: 1;
    }
}

@media screen and (max-width: 767px) {
    .section-bxb-calc {
        padding: 0 0 48px;
    }

    .section-bxb-calc .bxb-calc-row {
        flex-direction: column;
        gap: 10px;
    }

    .section-bxb-calc .bxb-calc-aside {
        display: none;
    }

    .section-bxb-calc .bxb-calc-aside > a {
        padding: 24px 20px;
    }

    .section-bxb-calc .bxb-calc-header {
        margin: 0 13px 15px;
        font-size: 24px;
        line-height: 28px;
    }

    .section-bxb-calc .bxb-calc-form {
        padding: 25px 20px 20px;
    }

    .section-bxb-calc .bxb-calc-form-row {
        flex-direction: column;
        gap: 17px;
    }

    .section-bxb-calc .bxb-calc-summary {
        flex-basis: auto;
    }

    .section-bxb-calc .bxb-calc-field-row {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
        margin-bottom: 18px;
    }

    .section-bxb-calc .bxb-calc-field-row > label,
    .section-bxb-calc .bxb-calc-field-row > legend,
    .section-bxb-calc .bxb-calc-field-row > .bxb-calc-field-label {
        flex-basis: auto;
    }

    .section-bxb-calc .bxb-calc-control {
        width: 100%;
    }

    .section-bxb-calc .bxb-calc-radios {
        gap: 20px;
    }

    .section-bxb-calc .bxb-calc-radios label {
        font-size: 15px;
    }

    .section-bxb-calc .bxb-calc-result-title {
        font-size: 18px;
        white-space: normal;
    }

    .section-bxb-calc .bxb-calc-category-picker {
        margin-top: -5px;
    }

    .section-bxb-calc .bxb-calc-category-picker-label {
        margin-bottom: 10px;
        font-size: 16px;
        line-height: 1.4;
    }

    .section-bxb-calc .bxb-calc-category-toggle {
        min-height: 48px;
        padding: 8px 14px;
    }

    .section-bxb-calc .bxb-calc-category-tag {
        font-size: 15px;
        line-height: 18px;
    }

    .section-bxb-calc .bxb-calc-category-dropdown {
        height: 288px;
    }

    .section-bxb-calc .bxb-calc-category-option {
        min-height: 40px;
        font-size: 16px;
    }

    .section-bxb-calc .bxb-calc-category-checkbox {
        flex-basis: 24px;
        width: 24px;
        height: 24px;
    }

    .section-bxb-calc .bxb-calc-category-option input:checked + .bxb-calc-category-checkbox::after {
        top: 4px;
        left: 8px;
        width: 6px;
        height: 11px;
    }

    .section-bxb-calc .bxb-calc-category-warning {
        font-size: 16px;
        line-height: 1.1;
    }

    #bxbCalcErrors {
        margin-left: 0;
    }
}

@media screen and (max-width: 420px) {
    .section-bxb-calc .bxb-calc-form {
        padding-right: 14px;
        padding-left: 14px;
    }

    .section-bxb-calc .bxb-calc-dimensions {
        gap: 5px;
    }

    .section-bxb-calc .bxb-calc-unit {
        flex-basis: 36px;
    }
}
