:root {
    --cost-v2-red: #e50019;
    --cost-v2-red-dark: #c90016;
    --cost-v2-ink: #151515;
    --cost-v2-muted: #6b6b6b;
    --cost-v2-muted-dark: #555;
    --cost-v2-line: #d8d8d8;
    --cost-v2-surface: #f6f6f6;
    --cost-v2-white: #fff;
    --cost-v2-accent-surface: #fff8f9;
    --cost-v2-accent-line: #e9c4c9;
    --cost-v2-accent-ink: #841523;
    --cost-v2-shadow: 0 8px 28px rgba(45, 25, 25, 0.08);
    --cost-v2-check-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 12.6111L8.92308 17.5L20 6.5' fill='none' stroke='black' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    --cost-v2-check-white: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 12.6111L8.92308 17.5L20 6.5' fill='none' stroke='white' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.pl-13 {
    padding-left: 13px;
}

.cost-v2-page,
.cost-v2-page * {
    box-sizing: border-box;
}

.cost-v2-page {
    color: var(--cost-v2-ink);
    margin-top: 94px;
    padding: 24px 24px 0;
    font-family: "Toyota Type", Arial, sans-serif;
}

.cost-v2-shell {
    width: min(100%, 1240px);
    margin: 0 auto 40px;
}

.cost-v2-title {
    margin: 0 0 38px;
    font-size: clamp(32px, 3vw, 42px);
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: -0.025em;
    text-align: center;
}

.cost-v2-form.cost-estimate-form-container {
    width: 100%;
    margin: 0;
    padding: 0;
    background: transparent;
}

.cost-v2-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(500px, 1.08fr);
    gap: clamp(44px, 5vw, 64px);
    align-items: start;
}

.cost-v2-config {
    min-width: 0;
    padding-top: 14px;
}

.cost-v2-section-title {
    margin: 0 0 28px;
    color: var(--cost-v2-ink);
    font-size: 21px;
    font-weight: 600;
    line-height: 1.25;
    letter-spacing: -0.01em;
}

.cost-v2-field-row.cost-estimate-input-group {
    display: grid;
    grid-template-columns: minmax(125px, 1fr) minmax(180px, 0.85fr);
    gap: 24px;
    align-items: center;
    width: 100%;
}

.cost-v2-field-row .cost-estimate-input-label,
.cost-v2-color-field .cost-estimate-input-label {
    margin: 0;
    color: var(--cost-v2-muted);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.35;
}

.cost-v2-option-group .cost-estimate-input-label {
    margin: 0;
    color: var(--cost-v2-muted);
    font-size: 13px;
    font-weight: 400;
    line-height: 1.35;
}

.cost-v2-field-row .cost-estimate-input-label span,
.cost-v2-color-field .cost-estimate-input-label span,
.cost-v2-option-group .cost-estimate-input-label span {
    color: var(--cost-v2-red);
}

.cost-v2-page .cost-estimate-select-input-container {
    --cost-v2-select-arrow-space: 30px;
    --cost-v2-select-text-inset: 0px;
    position: relative;
    width: 100%;
}

.cost-v2-page .select2-container {
    width: 100% !important;
}

.cost-v2-page .select2-container--default .select2-selection--single {
    height: 34px !important;
    border: 0 !important;
    border-radius: 0 !important;
    background-color: transparent !important;
    background-image: linear-gradient(#9b9b9b, #9b9b9b) !important;
    background-repeat: no-repeat !important;
    background-position: left bottom !important;
    background-size: calc(100% - var(--cost-v2-select-arrow-space)) 1px !important;
    transition: background-size 180ms ease;
}

.cost-v2-page .select2-container--default .select2-selection--single:hover {
    background-image: linear-gradient(var(--cost-v2-ink), var(--cost-v2-ink)) !important;
}

.cost-v2-page .select2-container--default.select2-container--focus .select2-selection--single,
.cost-v2-page .select2-container--default.select2-container--open .select2-selection--single {
    background-image: linear-gradient(var(--cost-v2-red), var(--cost-v2-red)) !important;
    background-size: calc(100% - var(--cost-v2-select-arrow-space)) 2px !important;
}

.cost-v2-page .select2-container--default .select2-selection--single .select2-selection__rendered {
    padding: 0 var(--cost-v2-select-arrow-space) 0 var(--cost-v2-select-text-inset) !important;
    color: var(--cost-v2-ink);
    font-size: 14px;
    line-height: 32px;
}

.cost-v2-page .select2-container--default .select2-selection--single .select2-selection__placeholder {
    color: #8d8d8d;
}

.cost-v2-page .cost-estimate-select-input-container::after {
    content: "";
    position: absolute;
    top: 13px;
    right: 4px;
    width: 8px;
    height: 8px;
    border-right: 1px solid #676767;
    border-bottom: 1px solid #676767;
    transform: rotate(45deg);
    transition: transform 180ms ease;
    pointer-events: none;
}

.cost-v2-page .cost-estimate-select-input-container.is-select2-open::after {
    transform: translateY(3px) rotate(225deg);
}

.select2-container--open .select2-dropdown.cost-v2-dropdown {
    margin-top: 6px;
    overflow: hidden;
    border: 1px solid #d7d7d7;
    border-radius: 2px;
    background: #fff;
    box-shadow: 0 12px 28px rgba(32, 24, 24, 0.12);
    transform-origin: top center;
    animation: cost-v2-select2-open 180ms cubic-bezier(0.2, 0.75, 0.25, 1) both;
    will-change: transform, opacity;
}

.select2-dropdown.cost-v2-dropdown .select2-search--dropdown {
    padding: 10px 10px 6px;
}

.select2-dropdown.cost-v2-dropdown .select2-search--dropdown .select2-search__field {
    min-height: 38px;
    padding: 8px 10px;
    border: 1px solid #c9c9c9;
    border-radius: 2px;
    color: var(--cost-v2-ink);
    font-family: inherit;
    font-size: 14px;
    outline: 0;
    transition: border-color 180ms ease, box-shadow 180ms ease;
}

.select2-dropdown.cost-v2-dropdown .select2-search--dropdown .select2-search__field:focus {
    border-color: var(--cost-v2-red);
    box-shadow: 0 0 0 2px rgba(229, 0, 25, 0.1);
}

.select2-dropdown.cost-v2-dropdown .select2-results__options {
    padding: 5px;
    max-height: min(320px, 42vh);
    overflow-y: auto;
}

.select2-dropdown.cost-v2-dropdown .select2-results__option {
    min-height: 40px;
    padding: 9px 11px;
    border-radius: 2px;
    color: var(--cost-v2-ink);
    font-size: 14px;
    line-height: 22px;
    transition: background-color 150ms ease, color 150ms ease;
}

.select2-container--default .select2-dropdown.cost-v2-dropdown .select2-results__option--highlighted[aria-selected] {
    background: #f3f3f3;
    color: var(--cost-v2-ink);
}

.select2-container--default .select2-dropdown.cost-v2-dropdown .select2-results__option[aria-selected="true"] {
    position: relative;
    padding-right: 34px;
    background: #fff1f2;
    color: #b40016;
    font-weight: 500;
}

.select2-container--default .select2-dropdown.cost-v2-dropdown .select2-results__option[aria-selected="true"]::after {
    content: "";
    position: absolute;
    top: 12px;
    right: 12px;
    width: 16px;
    height: 16px;
    background: var(--cost-v2-red);
    -webkit-mask: var(--cost-v2-check-mask) center / contain no-repeat;
    mask: var(--cost-v2-check-mask) center / contain no-repeat;
}

.select2-dropdown.cost-v2-dropdown--compact .select2-search--dropdown {
    display: none;
}

@keyframes cost-v2-select2-open {
    from {
        opacity: 0;
        transform: translateY(-5px) scaleY(0.97);
    }
    to {
        opacity: 1;
        transform: translateY(0) scaleY(1);
    }
}

@media (prefers-reduced-motion: reduce) {
    .select2-container--open .select2-dropdown.cost-v2-dropdown {
        animation: none;
    }

    .cost-v2-page .cost-estimate-select-input-container::after,
    .cost-v2-disclosure,
    .cost-v2-disclosure-icon::after {
        transition: none;
    }
}

.cost-v2-color-field.cost-estimate-input-group {
    width: 100%;
    margin: 2px 0 18px;
}

.cost-v2-color-hint {
    margin: 4px 0 0;
    color: var(--cost-v2-muted);
    font-size: 11px;
    font-style: italic;
    line-height: 1.4;
}

.cost-v2-color-native {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
}

.cost-v2-swatches {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    min-height: 46px;
    margin-top: 14px;
}

.cost-v2-swatch {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
    transition: transform 180ms ease;
}

.cost-v2-swatch::before {
    content: "";
    display: block;
    box-sizing: border-box;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--swatch-background, #d8d8d8);
}

.cost-v2-swatch::after {
    content: "";
    position: absolute;
    inset: 0;
    box-sizing: border-box;
    border: 1px solid #b8b8b8;
    border-radius: 50%;
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.cost-v2-swatch.is-light-color::before {
    box-shadow: inset 0 0 0 1px #d0d0d0;
}

.cost-v2-swatch:hover::after {
    border-color: #6d6d6d;
    opacity: 1;
}

.cost-v2-swatch[aria-pressed="true"]::after {
    border: 2px solid var(--cost-v2-ink);
    opacity: 1;
}

.cost-v2-swatch:active {
    transform: scale(0.98);
}

.cost-v2-swatch:focus-visible,
.cost-v2-disclosure:focus-visible,
.cost-v2-actions a:focus-visible,
.cost-v2-actions button:focus-visible,
.cost-v2-modal button:focus-visible,
.cost-v2-modal input:focus-visible {
    outline: 3px solid rgba(229, 0, 25, 0.28);
    outline-offset: 3px;
}

@media (max-width: 769px) {
    .cost-v2-swatches {
        min-height: 36px;
        gap: 8px;
    }

    .cost-v2-swatch {
        width: 44px;
        height: 44px;
    }

    .cost-v2-swatch::before {
        width: 28px;
        height: 28px;
    }
}

.cost-v2-vehicle {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 0px;
    text-align: center;
}

.cost-v2-vehicle-stage {
    display: grid;
    place-items: center;
    width: 100%;
    min-height: 160px;
}

.cost-v2-vehicle:not(.has-image):not(.is-loading-image) .cost-v2-vehicle-stage {
    min-height: 88px;
}

.cost-v2-vehicle-placeholder {
    color: #999;
    font-size: 14px;
}

.cost-v2-vehicle-image {
    width: min(100%, 470px);
    height: 160px;
    object-fit: contain;
    filter: drop-shadow(0 18px 16px rgba(30, 22, 22, 0.12));
}

.cost-v2-vehicle-name {
    margin: 0;
    font-size: 22px;
    font-weight: 600;
    line-height: 1.25;
    text-transform: uppercase;
}

.cost-v2-color-name {
    min-height: 22px;
    margin: 5px 0 0;
    color: #444;
    font-size: 15px;
}

@media (min-width: 821px) {
    .cost-v2-config {
        position: sticky;
        top: 110px;
        align-self: start;
    }
}

@media (min-width: 821px) and (max-height: 800px) {
    .cost-v2-title {
        margin-bottom: 28px;
    }

    .cost-v2-config {
        padding-top: 0;
    }

    .cost-v2-config > .cost-v2-section-title {
        margin-bottom: 18px;
    }

    .cost-v2-color-field.cost-estimate-input-group {
        margin-bottom: 8px;
    }

    .cost-v2-vehicle-stage,
    .cost-v2-vehicle-image {
        height: 130px;
        min-height: 130px;
    }

    .cost-v2-vehicle:not(.has-image):not(.is-loading-image) .cost-v2-vehicle-stage {
        height: auto;
        min-height: 64px;
    }

    .cost-v2-swatches {
        margin-top: 8px;
    }
}

.cost-v2-estimate {
    min-width: 0;
    padding: 18px;
    background: var(--cost-v2-white);
    box-shadow: var(--cost-v2-shadow);
}

.cost-v2-estimate > .cost-v2-section-title {
    margin-bottom: 22px;
}

.cost-v2-summary {
    display: block !important;
    width: 100%;
    margin: 0 !important;
}

.cost-v2-page .cost-estimate-form-info-line {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    justify-content: space-between;
    width: 100%;
    margin: 0 0 8px;
}

.cost-v2-page .cost-estimate-form-info-line .info-line-label {
    color: var(--cost-v2-muted);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.35;
}

.cost-v2-page .cost-estimate-form-info-line .info-line-value {
    flex: 0 0 auto;
    color: var(--cost-v2-muted);
    font-size: 15px;
    font-weight: 400;
    font-variant-numeric: tabular-nums;
    line-height: 1.35;
    white-space: nowrap;
}

.cost-v2-page .info-line-currency {
    margin-left: 3px;
    font-size: inherit;
}

.cost-v2-disclosure {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    width: 100%;
    min-height: 52px;
    margin-top: 12px;
    padding: 10px 14px;
    border: 1px solid var(--cost-v2-muted);
    background: var(--cost-v2-muted);
    color: var(--cost-v2-white);
    font: inherit;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.35;
    text-align: left;
    cursor: pointer;
    transition: border-color 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.cost-v2-disclosure:hover {
    border-color: var(--cost-v2-muted-dark);
    background: var(--cost-v2-muted-dark);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.cost-v2-disclosure[aria-expanded="true"] {
    border-color: var(--cost-v2-muted-dark);
    background: var(--cost-v2-muted-dark);
    box-shadow: none;
}

.cost-v2-disclosure-icon {
    display: grid;
    flex: 0 0 30px;
    place-items: center;
    width: 30px;
    height: 30px;
/*    border: 1px solid var(--cost-v2-line);*/
/*    background: var(--cost-v2-white);*/
}

.cost-v2-disclosure-icon::after {
    content: "";
    width: 7px;
    height: 7px;
    margin-top: -3px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(45deg);
    transition: transform 200ms ease, margin-top 200ms ease;
}

.cost-v2-disclosure[aria-expanded="true"] .cost-v2-disclosure-icon {
    border-color: #aaa;
}

.cost-v2-disclosure[aria-expanded="true"] .cost-v2-disclosure-icon::after {
    margin-top: 3px;
    transform: rotate(225deg);
}

.cost-v2-other-panel {
    padding: 18px 12px 2px;
    border: 1px solid #aaa;
    border-top: 0;
}

.cost-v2-other-panel[hidden] {
    display: none !important;
}

.cost-v2-option-group {
    padding: 0 0 18px;
}

.cost-v2-page .cost-estimate-form-section-5.cost-v2-option-group {
    display: block !important;
}

.cost-v2-option-group + .cost-v2-option-group {
    padding-top: 16px;
    border-top: 1px solid #ececec;
}

.cost-v2-option-group > h3 {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.3;
}

.cost-v2-option-group .cost-estimate-input-group {
    display: grid;
    grid-template-columns: minmax(120px, 1fr) minmax(155px, 1.1fr);
    gap: 16px;
    align-items: center;
    width: 100%;
}

.cost-v2-option-group .cost-estimate-input-group .errorPreAmount {
    grid-column: 1 / -1;
}

.cost-v2-page .form-input {
    width: 100%;
    min-height: 36px;
    padding: 7px 8px;
    border: 1px solid var(--cost-v2-line);
    border-radius: 0;
    color: var(--cost-v2-ink);
    font: inherit;
    font-size: 14px;
}

.cost-v2-page .form-input:focus {
    border-color: var(--cost-v2-red);
    outline: 2px solid rgba(229, 0, 25, 0.14);
}

.cost-v2-page .cost-estimate-checkbox-group {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 10px;
    align-items: center;
    width: 100%;
    min-height: 34px;
}

.cost-v2-page .cost-estimate-checkbox-group > .checkbox-group-container {
    display: contents;
}

.cost-v2-page .cost-estimate-checkbox-group .cost-estimate-checkbox-input {
    grid-column: 3;
    grid-row: 1;
}

.cost-v2-page .cost-estimate-checkbox-group .cost-estimate-input-label {
    grid-column: 1;
    grid-row: 1;
    min-width: 0;
}

.cost-v2-page .checkbox-group-container,
.cost-v2-page .required-checkbox-group {
    display: flex;
    gap: 9px;
    align-items: center;
    min-width: 0;
}

.cost-v2-page input[type="checkbox"] {
    flex: 0 0 auto;
    width: 16px;
    height: 16px;
    margin: 0;
    border: 1px solid #929292;
    border-radius: 2px;
    appearance: none;
    background: #fff;
    cursor: pointer;
    transition: border-color 160ms ease, background-color 160ms ease, box-shadow 160ms ease;
}

.cost-v2-page input[type="checkbox"]:checked {
    border-color: var(--cost-v2-red);
    background-color: var(--cost-v2-red);
    background-image: var(--cost-v2-check-white);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 13px 13px;
}

.cost-v2-page input[type="checkbox"]:disabled {
    cursor: not-allowed;
    opacity: 0.45;
}

.cost-v2-page input[type="checkbox"]:focus-visible {
    outline: 3px solid rgba(229, 0, 25, 0.22);
    outline-offset: 2px;
}

.cost-v2-page input[type="radio"] {
    flex: 0 0 auto;
    width: 16px;
    height: 16px;
    margin: 0;
    accent-color: var(--cost-v2-red);
}

.cost-v2-page .cost-estimate-checkbox-group .cost-estimate-input-label {
    color: var(--cost-v2-muted);
    font-size: 13px;
    cursor: pointer;
}

.cost-v2-page .cost-estimate-checkbox-group .info-line-value {
    grid-column: 2;
    grid-row: 1;
    color: var(--cost-v2-muted);
    font-size: 13px;
    font-variant-numeric: tabular-nums;
    opacity: 0;
    transform: translateX(4px);
    transition: opacity 180ms ease, transform 180ms ease;
    visibility: hidden;
    white-space: nowrap;
}

.cost-v2-page .cost-estimate-checkbox-group.has-insurance-amount .info-line-value {
    opacity: 1;
    transform: translateX(0);
    visibility: visible;
}

.car-insurance-container,
.voluntary-civil-liability-insurance-container,
.accident-insurance-for-drivers-occupants-container {
    margin: 6px 0 18px;
    padding: 15px 16px 16px;
    background: var(--cost-v2-surface);
}

.cost-v2-page .insurance-label {
    margin: 0 0 10px;
    font-size: 13px;
    font-weight: 600;
}

.cost-v2-page #tibox,
.cost-v2-page #termbox {
    display: block;
    margin: 0 0 14px;
}

.cost-v2-page #tibox > .row,
.cost-v2-page #termbox > .row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px 18px;
    width: 100%;
    margin: 0 auto;
}

.cost-v2-page #voluntarily-level {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 18px;
    width: 100%;
    margin: 0;
}

.cost-v2-page .period-checkbox-group,
.cost-v2-page .insurance-checkbox-group {
    display: flex;
    gap: 8px;
    align-items: center;
    min-width: 0;
    font-size: 13px;
    line-height: 1.35;
}

.cost-v2-page #tibox .period-checkbox-group,
.cost-v2-page #termbox .period-checkbox-group,
.cost-v2-page #voluntarily-level .period-checkbox-group,
.cost-v2-page #voluntarily-level .insurance-checkbox-group {
    flex: none;
    width: 100%;
    max-width: none;
    padding: 0;
}

.cost-v2-page .period-checkbox-group label,
.cost-v2-page .insurance-checkbox-group label {
    cursor: pointer;
    margin-bottom: 0px;
}

.cost-v2-page .period-checkbox-input[type="radio"],
.cost-v2-page .insurance-checkbox-input[type="radio"] {
    flex: 0 0 24px;
    width: 24px;
    height: 24px;
    border: 1px solid #d8d8d8;
    border-radius: 50%;
    appearance: none;
    background: #fff;
    cursor: pointer;
    transition: border-color 160ms ease, background-color 160ms ease;
}

.cost-v2-page .period-checkbox-input[type="radio"]:checked,
.cost-v2-page .insurance-checkbox-input[type="radio"]:checked {
    border-color: var(--cost-v2-red);
    background-color: var(--cost-v2-red);
    background-image: var(--cost-v2-check-white);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 16px 16px;
}

.cost-v2-page .period-checkbox-input[type="radio"]:focus-visible,
.cost-v2-page .insurance-checkbox-input[type="radio"]:focus-visible {
    outline: 3px solid rgba(229, 0, 25, 0.2);
    outline-offset: 2px;
}

.cost-v2-accessory-group {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    overflow: hidden;
}

.cost-v2-accessory-choice.cost-estimate-input-group {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    margin-bottom: 20px;
}

.cost-v2-accessory-choice .cost-estimate-input-label {
    color: var(--cost-v2-ink);
    font-size: 16px;
    font-weight: 500;
}

.cost-v2-accessory-choice .select2-selection--single {
    min-height: 42px;
    padding-top: 7px;
    padding-bottom: 9px;
}

.car__slide {
    display: none;
    grid-column: 1 / -1;
    width: 100%;
    min-width: 0;
    max-width: 100%;
    margin-top: 4px;
    overflow: hidden;
}

.cost-v2-page #render__slide {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    overflow: hidden;
}

.car__slide--title {
    margin: 0 0 14px;
    color: var(--cost-v2-muted);
    font-size: 13px;
    line-height: 1.45;
}

.car__slide--title strong {
    color: var(--cost-v2-ink);
    font-weight: 500;
}

.total__accessories {
    margin: 16px 0 0;
    color: var(--cost-v2-muted);
    font-size: 13px;
    font-variant-numeric: tabular-nums;
    line-height: 1.45;
}

.total__accessories strong {
    color: var(--cost-v2-ink);
    font-weight: 600;
}

.cost-v2-page .cost-v2-swiper-frame {
    display: grid;
    grid-template-columns: 28px minmax(0, 1fr) 28px;
    gap: 8px;
    align-items: center;
    width: 100%;
    min-width: 0;
    max-width: 100%;
    overflow: hidden;
}

.cost-v2-page .swiper-container {
    position: relative;
    overflow: hidden;
    grid-column: 2;
    min-width: 0;
    width: 100%;
    padding: 8px 2px 22px;
    box-sizing: border-box;
}

.cost-v2-page .swiper-wrapper {
    display: flex;
    align-items: stretch;
    padding: 0;
    list-style: none;
}

.cost-v2-page .swiper-slide {
    display: flex;
    min-width: 0;
    height: auto;
}

.cost-v2-page .carandaccessory__item {
    position: relative;
    display: grid;
    grid-template-rows: 118px minmax(42px, auto) auto;
    width: 100%;
    height: 100%;
    min-width: 0;
    padding: 11px 11px 13px;
    overflow: hidden;
    border: 1px solid #e2e2e2;
    border-radius: 3px;
    background: #fff;
    box-shadow: 0 3px 12px rgba(42, 36, 36, 0.06);
    cursor: pointer;
    transition: border-color 180ms ease, background-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.cost-v2-page .carandaccessory__item:hover {
    border-color: #c9c9c9;
    background: #fff;
    box-shadow: 0 6px 14px rgba(42, 36, 36, 0.12);
    transform: translateY(-3px);
}

.cost-v2-page .carandaccessory__item.is-selected {
    border-color: var(--cost-v2-red);
    background: #fff;
    box-shadow: 0 5px 14px rgba(111, 13, 24, 0.13);
}

.cost-v2-page .carandaccessory__item.is-selected::before {
    content: "";
    position: absolute;
    top: 8px;
    right: 8px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--cost-v2-red);
    box-shadow: 0 2px 7px rgba(151, 0, 18, 0.24);
}

.cost-v2-page .carandaccessory__item.is-selected::after {
    content: "";
    position: absolute;
    top: 12px;
    right: 12px;
    width: 14px;
    height: 14px;
    background: #fff;
    -webkit-mask: var(--cost-v2-check-mask) center / contain no-repeat;
    mask: var(--cost-v2-check-mask) center / contain no-repeat;
}

.cost-v2-page .carandaccessory__item:focus-visible {
    outline: 3px solid rgba(229, 0, 25, 0.22);
    outline-offset: 3px;
}

.cost-v2-page .carandaccessory__item--img {
    width: 100%;
    height: 118px;
    padding: 7px;
    background: #f5f5f5;
    object-fit: contain;
}

.cost-v2-page .carandaccessory__item--title {
    display: -webkit-box;
    overflow: hidden;
    margin: 9px 0 7px;
    color: var(--cost-v2-ink);
    font-size: 13px;
    font-weight: 500;
    line-height: 1.4;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.cost-v2-page .carandaccessory__price {
    display: flex;
    gap: 6px;
    align-items: flex-end;
    justify-content: space-between;
}

.cost-v2-page .carandaccessory__price--item {
    min-width: 0;
}

.cost-v2-page .price__text {
    margin: 0;
    color: #686868;
    font-size: 12px;
    font-variant-numeric: tabular-nums;
    line-height: 1.35;
}

.cost-v2-page .carandaccessory__item .price__text:not(.price__old) {
    color: var(--cost-v2-ink);
    font-weight: 600;
}

.cost-v2-page .price__color-red {
    color: inherit;
}

.cost-v2-page .price__old {
    color: #999;
    text-decoration: line-through;
}

.cost-v2-page .required-checkbox-group {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
}

.cost-v2-page .accessoryCheck {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

.cost-v2-page .accessoryCheck:focus-visible {
    outline: 3px solid rgba(229, 0, 25, 0.24);
    outline-offset: 2px;
}

.cost-v2-page .required-insurance-checkbox-label.custom {
    display: none;
}

.cost-v2-page .swiper-button-prev,
.cost-v2-page .swiper-button-next {
    position: static;
    inset: auto;
    align-self: center;
    justify-self: center;
    width: 28px;
    height: 34px;
    margin: 0;
    transform: none;
    color: var(--cost-v2-red);
}

.cost-v2-page .swiper-button-prev {
    grid-column: 1;
}

.cost-v2-page .swiper-button-next {
    grid-column: 3;
}

.cost-v2-page .swiper-button-prev::after,
.cost-v2-page .swiper-button-next::after {
    font-size: 24px;
    font-weight: 500;
}

@media (max-width: 520px) {
    .cost-v2-page .cost-v2-swiper-frame {
        grid-template-columns: 24px minmax(0, 1fr) 24px;
        gap: 4px;
    }

    .cost-v2-page .swiper-button-prev,
    .cost-v2-page .swiper-button-next {
        width: 24px;
    }

    .cost-v2-page .carandaccessory__item {
        grid-template-rows: 108px minmax(42px, auto) auto;
        padding: 9px 9px 11px;
    }

    .cost-v2-page .carandaccessory__item--img {
        height: 108px;
    }

    .cost-v2-page #tibox > .row,
    .cost-v2-page #termbox > .row,
    .cost-v2-page #voluntarily-level {
        grid-template-columns: 1fr;
        gap: 10px;
    }
}

.errorPreAmount,
#showNotificationKazen {
    display: none;
    margin: 4px 0 0;
    color: #b00016;
    font-size: 12px;
    line-height: 1.4;
}

.cost-v2-page #showNotificationKazen.cost-v2-finance-feedback {
    grid-column: 2;
    margin: -8px 0 0;
}

.form__ballon {
    display: grid;
    gap: 10px;
}

.cost-v2-page #boxLoanAmount .cost-v2-loan-limit-note,
.cost-v2-page #boxLoanAmount .errorPreAmount {
    grid-column: 1 / -1;
}

.cost-v2-loan-limit-note {
    margin: 2px 0 0;
    padding: 6px 8px;
    border-left: 3px solid var(--cost-v2-red);
    background: rgba(229, 0, 25, 0.06);
    color: #8f0012;
    font-size: 11px;
    font-weight: 600;
    line-height: 1.45;
}

.cost-custom-btngroup {
    margin: 13px 0;
}

.cost-custom-btn-show-dashboard,
.btn-show-detail {
    padding: 8px 12px;
    border: 1px solid var(--cost-v2-ink);
    background: transparent;
    color: var(--cost-v2-ink);
    font: inherit;
    font-size: 12px;
    cursor: pointer;
}

.cost-custom-btn-show-dashboard.disabled {
    border-color: #c9c9c9;
    color: #a5a5a5;
    pointer-events: none;
}

.cost-custom {
    display: none;
    padding: 13px;
    background: var(--cost-v2-surface);
}

.cost-v2-total {
    display: grid;
    grid-template-columns: 1fr auto auto;
    align-items: end;
    min-height: 72px;
    margin-top: 12px;
    padding: 14px 16px;
    border: 1px solid var(--cost-v2-accent-line);
    border-left: 4px solid var(--cost-v2-red);
    background: var(--cost-v2-accent-surface);
    box-shadow: 0 3px 12px rgba(104, 20, 32, 0.04);
}

.cost-v2-total > span:first-child {
    grid-column: 1 / -1;
    margin-bottom: 2px;
    color: var(--cost-v2-accent-ink);
    font-size: 14px;
}

.cost-v2-total strong {
    color: var(--cost-v2-ink);
    font-size: clamp(30px, 3vw, 41px);
    font-weight: 400;
    font-variant-numeric: tabular-nums;
    line-height: 1;
    letter-spacing: -0.03em;
}

.cost-v2-total-currency {
    margin: 0 0 2px 6px;
    font-size: 26px;
    line-height: 1;
}

.cost-v2-update-status {
    margin: 7px 0 0;
    color: var(--cost-v2-muted);
    font-size: 12px;
    line-height: 1.4;
}

.cost-v2-estimate.has-update-error .cost-v2-update-status {
    color: var(--cost-v2-red-dark);
}

.cost-v2-consent.cost-estimate-form-section-6 {
    margin-top: 17px !important;
}

.cost-v2-page .cost-v2-consent .required-checkbox-group {
    position: static;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    width: 100%;
    height: auto;
    overflow: visible;
    clip: auto;
    clip-path: none;
}

.cost-v2-page .cost-v2-consent .required-checkbox-input {
    position: static;
    flex: 0 0 15px;
    width: 15px;
    height: 15px;
    margin: 1px 0 0;
    opacity: 1;
}

.cost-v2-consent .required-insurance-checkbox-label {
    margin: 0;
    color: #777;
    font-size: 13px;
    line-height: 1.45;
    cursor: pointer;
}

.cost-v2-consent .t-note {
    margin: 5px 0 0;
    color: #555;
    font-size: 12px;
    line-height: 1.45;
}

.cost-v2-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 18px;
}

.cost-v2-actions .cost-estimate-form-submit-button,
.cost-v2-actions .cost-v2-test-drive {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    margin: 0;
    padding: 10px 14px;
    border: 1px solid var(--cost-v2-red);
    background: var(--cost-v2-red);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 180ms ease, border-color 180ms ease, transform 120ms ease;
}

.cost-v2-actions .cost-estimate-form-submit-button:hover:not(:disabled),
.cost-v2-actions .cost-v2-test-drive:hover {
    border-color: var(--cost-v2-red-dark);
    background: var(--cost-v2-red-dark);
    color: #fff;
    text-decoration: none;
}

.cost-v2-actions .cost-estimate-form-submit-button {
    border-color: var(--cost-v2-red);
    background-color: var(--cost-v2-white) !important;
    color: var(--cost-v2-red);
}

.cost-v2-actions .cost-estimate-form-submit-button:hover:not(:disabled) {
    border-color: var(--cost-v2-red);
    background-color: var(--cost-v2-red) !important;
    color: var(--cost-v2-white);
}

.cost-v2-actions .cost-estimate-form-submit-button:active:not(:disabled),
.cost-v2-actions .cost-v2-test-drive:active {
    transform: translateY(1px);
}

.cost-v2-actions .cost-estimate-form-submit-button:disabled {
    opacity: 1;
    cursor: not-allowed;
}

.cost-v2-compat-only {
    display: none !important;
}

.cost-v2-page + .modal,
.cost-v2-modal,
.cost-v2-schedule,
.overlayLoading {
    display: none;
}

.cost-v2-modal {
    position: fixed;
    inset: 0;
    z-index: 10010;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.cost-v2-modal .modal__overlay,
.cost-v2-modal .modal__overlay-nofi {
    position: absolute;
    inset: 0;
    background: rgba(12, 12, 12, 0.62);
}

.cost-v2-modal .modal__body-email,
.cost-v2-modal .modal__body-notification {
    position: relative;
    z-index: 1;
    width: min(100%, 460px);
    max-height: calc(100dvh - 40px);
    overflow: auto;
    padding: 34px;
    background: #fff;
    box-shadow: 0 22px 70px rgba(25, 15, 15, 0.22);
}

.cost-v2-modal .close-form,
.cost-v2-modal .close-form-notification,
.cost-v2-schedule .popup__close {
    position: absolute;
    top: 10px;
    right: 12px;
    padding: 4px 8px;
    border: 0;
    background: transparent;
    color: #555;
    font-size: 25px;
    line-height: 1;
    cursor: pointer;
}

.cost-v2-modal .modal-email-title,
.cost-v2-modal .modal-notification-title {
    margin: 0 0 24px;
    font-size: 24px;
    font-weight: 600;
}

.cost-v2-modal label {
    display: block;
    margin: 15px 0 7px;
    color: #444;
    font-size: 14px;
}

.cost-v2-modal .form-input {
    width: 100%;
    min-height: 44px;
    padding: 10px 12px;
    border: 1px solid #bdbdbd;
    font: inherit;
}

.cost-v2-modal .form-input[aria-invalid="true"] {
    border-color: #b00016;
}

.cost-v2-field-error,
.cost-v2-submit-error {
    display: block;
    margin-top: 5px;
    color: #b00016;
    font-size: 12px;
}

.cost-v2-modal .submit-email-btn,
.cost-v2-success-close {
    width: 100%;
    min-height: 44px;
    margin-top: 22px;
    border: 1px solid var(--cost-v2-red);
    background: var(--cost-v2-red);
    color: #fff;
    font: inherit;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}

.cost-v2-modal .submit-email-btn:disabled {
    opacity: 0.6;
    cursor: wait;
}

.cost-v2-modal .notification-success {
    color: #444;
    font-size: 15px;
    line-height: 1.55;
}

.cost-v2-schedule {
    position: fixed;
    inset: 0;
    z-index: 10020;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(12, 12, 12, 0.62);
}

.cost-v2-schedule .popup__main {
    position: relative;
    width: min(100%, 1100px);
    max-height: calc(100dvh - 48px);
    overflow: auto;
    padding: 32px 24px;
    background: #fff;
}

.cost-v2-schedule .popup__title {
    margin: 0 0 20px;
    font-size: 24px;
}

.cost-v2-schedule .popup__content--table {
    overflow-x: auto;
}

.cost-v2-schedule table {
    width: 100%;
    min-width: 850px;
    border-collapse: collapse;
    font-size: 12px;
}

.cost-v2-schedule th,
.cost-v2-schedule td {
    padding: 9px 8px;
    border: 1px solid #ddd;
    text-align: right;
}

.cost-v2-schedule th:first-child,
.cost-v2-schedule td:first-child {
    text-align: center;
}

.overlayLoading {
    position: fixed;
    inset: 0;
    z-index: 10030;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.72);
}

.overlayLoading .loaderSpinner {
    width: 42px;
    height: 42px;
    border: 3px solid #ddd;
    border-top-color: var(--cost-v2-red);
    border-radius: 50%;
    animation: cost-v2-spin 700ms linear infinite;
}

@keyframes cost-v2-spin {
    to { transform: rotate(360deg); }
}

/* Keep the initial car selection and collapsed estimate visible on short desktop viewports. */
@media (min-width: 1280px) and (max-height: 760px) {
    .cost-v2-page {
        padding-top: 16px;
    }

    .cost-v2-title {
        margin-bottom: 18px;
        font-size: 36px;
    }

    .cost-v2-config > .cost-v2-section-title {
        margin-bottom: 12px;
    }

    .cost-v2-color-field.cost-estimate-input-group {
        margin-bottom: 4px;
    }

    .cost-v2-vehicle-stage,
    .cost-v2-vehicle-image {
        height: 108px;
        min-height: 108px;
    }

    .cost-v2-vehicle:not(.has-image):not(.is-loading-image) .cost-v2-vehicle-stage {
        height: auto;
        min-height: 56px;
    }

    .cost-v2-swatches {
        gap: 8px;
        min-height: 40px;
        margin-top: 4px;
    }

    .cost-v2-swatch {
        width: 40px;
        height: 40px;
    }

    .cost-v2-swatch::before {
        width: 32px;
        height: 32px;
    }

    .cost-v2-estimate {
        padding: 14px 16px;
    }

    .cost-v2-estimate > .cost-v2-section-title {
        margin-bottom: 14px;
    }

    .cost-v2-page .cost-estimate-form-info-line {
        margin-bottom: 5px;
    }

    .cost-v2-disclosure {
        min-height: 46px;
        margin-top: 8px;
    }

    .cost-v2-total {
        min-height: 64px;
        margin-top: 8px;
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .cost-v2-consent.cost-estimate-form-section-6 {
        margin-top: 10px !important;
    }

    .cost-v2-actions {
        margin-top: 12px;
    }

    .cost-v2-actions .cost-estimate-form-submit-button,
    .cost-v2-actions .cost-v2-test-drive {
        min-height: 40px;
    }
}

@media (min-width: 1280px) {
    .cost-v2-layout:has(.cost-v2-other-panel[hidden]) {
        align-items: stretch;
    }

    .cost-v2-layout:has(.cost-v2-other-panel[hidden]) .cost-v2-config {
        display: flex;
        flex-direction: column;
        align-self: stretch;
    }

    .cost-v2-layout:has(.cost-v2-other-panel[hidden]) .cost-v2-vehicle {
        flex: 1;
        justify-content: space-evenly;
    }
}

@media (min-width: 1280px) and (max-height: 760px) {
    .cost-v2-layout:has(.cost-v2-other-panel[hidden]) .cost-v2-vehicle-stage,
    .cost-v2-layout:has(.cost-v2-other-panel[hidden]) .cost-v2-vehicle-image {
        height: 120px;
        min-height: 120px;
    }

    .cost-v2-layout:has(.cost-v2-other-panel[hidden]) .cost-v2-vehicle:not(.has-image):not(.is-loading-image) .cost-v2-vehicle-stage {
        height: auto;
        min-height: 56px;
    }
}

@media (max-width: 1000px) {
    .cost-v2-page {
        margin-top: 64px;
        padding-top: 40px;
    }

    .cost-v2-layout {
        grid-template-columns: minmax(0, 1fr) minmax(390px, 0.95fr);
        gap: 36px;
    }
}

@media (max-width: 820px) {
    .cost-v2-page {
        padding-right: 18px;
        padding-left: 18px;
    }

    .cost-v2-layout {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .cost-v2-config {
        padding-top: 0;
    }

    .cost-v2-vehicle-stage {
        min-height: 230px;
    }

    .cost-v2-estimate {
        width: min(100%, 560px);
        margin: 0 auto;
    }
}

@media (max-width: 520px) {
    .cost-v2-page {
        padding: 30px 14px 0;
    }

    .cost-v2-title {
        margin-bottom: 30px;
        font-size: 31px;
    }

    .cost-v2-field-row.cost-estimate-input-group,
    .cost-v2-option-group .cost-estimate-input-group {
        grid-template-columns: 1fr;
        gap: 7px;
    }

    .cost-v2-page #showNotificationKazen.cost-v2-finance-feedback {
        grid-column: 1;
        margin: 0;
    }

    .cost-v2-field-row.cost-estimate-input-group {
        margin-bottom: 14px;
    }

    .cost-v2-page .select2-container--default .select2-selection--single {
        height: 44px !important;
    }

    .cost-v2-page .select2-container--default .select2-selection--single .select2-selection__rendered {
        font-size: 16px;
        line-height: 42px;
    }

    .cost-v2-page .cost-estimate-select-input-container::after {
        top: 18px;
    }

    .cost-v2-vehicle-stage {
        min-height: 190px;
    }

    .cost-v2-vehicle:not(.has-image):not(.is-loading-image) .cost-v2-vehicle-stage {
        min-height: 64px;
    }

    .cost-v2-vehicle-image {
        height: 205px;
    }

    .cost-v2-estimate {
        padding: 24px 17px 20px;
    }

    .cost-v2-page .cost-estimate-form-info-line .info-line-label {
        max-width: 68%;
        font-size: 15px;
    }

    .cost-v2-page .cost-estimate-form-info-line .info-line-value {
        font-size: 15px;
    }

    .cost-v2-actions {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .cost-v2-modal .modal__body-email,
    .cost-v2-modal .modal__body-notification {
        padding: 30px 20px 24px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .cost-v2-page *,
    .cost-v2-modal *,
    .cost-v2-schedule * {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}
