:root {
    /* Define Colors */
    --color-title: #1d1d1f;
    --color-green: #10b981;
    --color-green-light: #d8ebe6;
    --color-green-light-box: #f5fcfa;
    --color-blue: #0071e3;
    --color-blue-light: #c4dbf3;
    --color-red: #e30004;
    --color-caption: #6e6e73;
    --color-border-dark: #cacacc;
    --color-border-dark-200: #9c9c9f;
    --color-border: #e6e6e6;
    --color-background: #f5f5f7;
    --color-gray: #bcbcbc;
    --color-gray-light: #d4d4d5;
}

/* Utility Class */
.d-none {
    display: none !important;
}

.grow-1 {
    flex-grow: 1;
}

.w-full {
    width: 100%;
}

.rounded-full {
    border-radius: 100% !important;
}

.font-size-14 {
    font-size: 14px;
}

.font-size-15 {
    font-size: 15px;
}

.font-size-16 {
    font-size: 16px;
}

/* Layout Styles */
body {
    color: var(--color-title);
}

input::placeholder {
    color: var(--color-caption);
}

.repair-page {
    display: flex;
    gap: 6rem;
}

.sidebar {
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    width: 387px;
    gap: 2rem;
}

.sidebar-title {
    margin: 0 !important;
    font-size: 18px;
}

.stepper {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.stepper-mobile {
    display: none;
}

.stepper-mobile-check-icon {
    z-index: 10;
    opacity: 0;
}

.stepper-container {
    display: flex;
    flex-direction: column;
    margin-left: 0.25rem;
    gap: 1rem;
}

.stepper-indicator {
    position: absolute;
    top: 1px;
    left: 11px;
    width: 2px;
    height: 99%;
    margin-left: 0.25rem;
    background-color: var(--color-border-dark);
}

.stepper-indicator-line {
    width: 2px;
    height: 0%;
    background-color: var(--color-green);
}

.stepper-item {
    display: flex;
    align-items: start;
    gap: 1rem;
}

.stepper-item-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.stepper-item-selected-item {
    display: flex;
    align-items: center;
    min-height: 25px;
    opacity: 0;
    color: var(--color-caption);
    transition: opacity 300ms;
    font-size: 15px;
    gap: 1rem;
}

.stepper-item-selected-item.active {
    opacity: 1;
}

.stepper-item-edit {
    color: var(--color-blue);
    cursor: pointer;
    transition: all 300ms;
    font-size: 13px;
}

.stepper-item-edit.hide {
    opacity: 0;
    visibility: hidden;
}

.stepper-item-bullet {
    z-index: 10;
    width: 24px;
    height: 24px;
    border-radius: 100%;
    background-color: var(--color-border-dark);
    transition: all 300ms;
}

.stepper-item-bullet svg {
    opacity: 0;
}

.stepper-item.active .stepper-item-bullet {
    background-color: var(--color-blue);
    box-shadow: 0px 0px 0px 3px var(--color-blue-light);
}

.stepper-item.completed .stepper-item-bullet {
    box-shadow: none;
}

.stepper-item-bullet > svg {
    transition: opacity 300ms;
}

.stepper-item.completed .stepper-item-bullet > svg {
    opacity: 1 !important;
}

.stepper-item-title {
    color: var(--color-caption);
    transition: color 300ms ease;
}

.stepper-item.active .stepper-item-title {
    color: var(--color-blue);
}

.stepper-item.completed .stepper-item-title {
    color: var(--color-title);
}

.stepper-last-step {
    z-index: 10;
    display: flex;
    align-items: center;
    flex-direction: column;
    padding: 0.25rem;
    border: 1px solid var(--color-border);
    border-radius: 20px;
    background: var(--color-background);
    transition: all 400ms;
    gap: 0;
}

.stepper-last-step.completed {
    border-color: var(--color-green-light);
    background-color: var(--color-green-light-box);
}

.stepper-last-step-title {
    display: flex;
    align-items: center;
    margin-top: 0.5rem;
    margin-bottom: 0.75rem;
    color: var(--color-caption);
    transition: all 400ms;
    font-size: 14px;
    gap: 0.5rem;
}

.stepper-last-step.completed .stepper-last-step-title {
    color: var(--color-green);
}

.stepper-last-step-container {
    display: flex;
    flex-direction: column;
    width: 100%;
    line-height: 20px;
    padding: 1rem;
    border: 1px solid var(--color-border);
    border-radius: 15px;
    background: #fff;
    font-size: 14px;
    gap: 0.5rem;
}

.stepper-last-step-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.price-box {
    display: flex;
    align-items: center;
    flex-direction: column;
    padding: 0.25rem;
    padding-top: 1rem;
    border: 1px solid var(--color-border);
    border-radius: 15px;
    background: var(--color-background);
    transition: color 300ms;
    text-align: center;
}

.price-box-title,
.product-pic-title {
    color: var(--color-title);
    font-size: 15px;
}

.price-box-price {
    margin-top: 0.5rem;
    margin-bottom: 1rem;
    color: var(--color-green);
    transition: color 300ms;
    font-size: 2.5rem;
}

.price-box.empty .price-box-price {
    color: var(--color-caption);
    transition: color 300ms;
    font-size: 20px;
}

.price-box-item {
    display: flex;
    align-items: center;
    flex-direction: column;
    width: 100%;
    padding: 30px 58px;
    margin-top: 0.5rem;
    border-radius: 10px;
    color: var(--color-title);
    background: #fff;
    cursor: pointer;
    user-select: none;
    transition: all 300ms;
    gap: 1rem;
}

.price-box:not(.empty) .price-box-item:hover {
    outline: 1px solid var(--color-blue);
    background-color: var(--color-blue-light);
}

.price-box:not(.empty) .price-box-item:hover .price-box-text {
    color: var(--color-blue);
}

.price-box-text {
    transition: color 300ms;
}

.price-box-icon {
    color: var(--color-blue);
}

.price-box.empty .price-box-icon {
    color: var(--color-gray-light);
    transition: color 300ms;
}

.price-box.empty .price-box-item {
    color: var(--color-gray-light);
    cursor: auto;
    transition: color 300ms;
}

.contact-form-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 46px;
    margin-top: 1rem;
    border: 1px solid var(--color-title);
    border-radius: 10px;
    background: #fff;
    transition: all 300ms;
}

.contact-form-btn:disabled {
    border-color: var(--color-border);
    color: var(--color-gray);
    cursor: not-allowed;
}

.product-pic {
    display: flex;
    align-items: center;
    flex-direction: column;
    width: 100%;
    padding: 2rem;
    border: 1px solid var(--color-border);
    border-radius: 15px;
}

.product-pic-image {
    margin-bottom: 1.5rem;
}

.product-pic-image.skeleton {
    width: 127px;
    height: 160px;
}

.product-title.skeleton {
    width: 200px;
    height: 26px;
}

.product-price.skeleton {
    width: 200px;
    height: 36px;
    margin-top: 1rem;
}

.product-pic-price {
    line-height: normal;
    color: var(--color-green);
    font-size: 2.5rem;
}

.custom-modal {
    display: none;
    position: relative;
    z-index: 9999;
}

.modal-backdrop {
    position: fixed;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgb(0 0 0 / 50%);
    inset: 0;
}

.modal-content {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 848px;
    max-height: 85vh;
    padding: 3rem;
    padding-bottom: 0px;
    margin: 2rem;
    border: 1px solid var(--color-border);
    border-radius: 20px;
    background-color: white;
    gap: 3rem;
}

.model-selector-header,
.contact-form-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.contact-form-modal-title {
    font-size: 1.5rem;
    font-weight: 600;
}

.model-selector-brand {
    display: flex;
    align-items: center;
    color: var(--color-title);
    font-size: 18px;
    gap: 1rem;
}

.model-selector-title {
    line-height: 50px;
    color: var(--color-title);
    font-size: 2.5rem;
}

.model-selector-stepper {
    margin: 0.25rem 0px;
    color: var(--color-blue);
    font-size: 18px;
}

#select-model-list {
    display: grid;
    overflow-y: auto;
    flex: 1;
    padding-bottom: 3rem;
    grid-template-columns: repeat(3, minmax(0, 206px));
    gap: 1rem;
}

.custom-select-model-card-skeleton-image {
    width: 135px;
    height: 100px;
}

.custom-select-model-card-skeleton-name {
    width: 135px;
    height: 35px;
}

.custom-card-select-skeleton-text {
    width: 120px;
    height: 26px;
}

#select-config-list .custom-card-select {
    flex-shrink: 0;
}

.custom-card-select-skeleton-icon {
    width: 26px;
    height: 26px;
}

.custom-select-model-card {
    display: flex;
    align-items: center;
    flex-direction: column;
    width: 100%;
    max-width: 206px;
    padding: 2.5rem 20px;
    border: 1px solid var(--color-border);
    border-radius: 15px;
    cursor: pointer;
    transition: all 300ms;
    text-align: center;
    font-size: 15px;
    gap: 2.5rem;
}

.custom-select-model-card:hover {
    border-color: var(--color-blue);
    color: var(--color-blue);
}

.custom-select-model-card-skeleton {
    border-color: var(--color-title) !important;
    background: #fff !important;
    cursor: progress !important;
}

.model-selector-step {
    display: flex;
    overflow: hidden;
    flex: 1;
    flex-direction: column;
    width: 100%;
    max-width: 670px;
}

.model-selector-search {
    display: flex;
    align-items: center;
    padding: 1rem 1.25rem;
    margin: 2rem 0;
    border: 1px solid var(--color-border);
    border-radius: 10px;
    gap: 1rem;
}

.model-selector-search input,
.form-field-date-input {
    width: 100%;
    height: auto !important;
    border-radius: 0px !important;
    border: none !important;
    padding: 0px !important;
    margin: 0px !important;
}

.info-config-step {
    display: flex;
    flex-direction: column;
    padding: 1.25rem;
    margin: 2rem 0;
    border-radius: 20px;
    background-color: var(--color-background);
    gap: 0.5rem;
}

.info-config-step span {
    line-height: 18px;
    color: var(--color-caption);
    font-size: 15px;
}

.info-config-step div {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.info-config-step div span {
    font-size: 18px !important;
}

.info-config-step div span:last-child {
    color: var(--color-title);
}

.info-box {
    display: flex;
    align-items: center;
    width: fit-content;
    margin-bottom: 1.5rem;
    padding: 10px 16px;
    border-radius: 100px;
    color: var(--color-green);
    background: var(--color-green-light-box);
    gap: 1rem;
}

.info-box svg {
    flex-shrink: 0;
}

#select-config-list {
    display: flex;
    flex-direction: column;
    padding-bottom: 3rem;
    gap: 0.5rem;
    overflow-y: auto;
}

#select-device-condition-list {
    display: flex;
    flex-direction: column;
    padding-bottom: 6rem;
    margin-top: 2rem;
    gap: 0.5rem;
}

#select-device-condition-list .custom-card-select,
#select-config-list .custom-card-select {
    height: 75px !important;
}

.step-title {
    margin-bottom: 3.5rem;
    color: var(--color-title);
    font-size: 2.5rem;
}

.step-subtitle {
    color: var(--color-title);
    font-size: 1.25rem;
}

.select-list {
    display: grid;
    width: 100%;
    margin-top: 1.5rem;
    grid-template-columns: repeat(2, minmax(0, 339px));
    gap: 0.5rem;
}

.custom-card-select {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 339px;
    height: 102px;
    padding: 0px 30px;
    border: 1px solid var(--color-title);
    border-radius: 15px;
    color: var(--color-title);
    cursor: pointer;
    transition: background 300ms, background-color 300ms, color 300ms,
    border-color 300ms;
}

.custom-card-select:hover {
    border-color: var(--color-blue);
    background: var(--color-blue-light);
}

.custom-card-select-skeleton {
    border-color: var(--color-title) !important;
    background: #fff !important;
    cursor: progress !important;
}

.qa-add-button {
    position: relative;
    display: flex;
    align-items: center;
    flex-shrink: 0;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 100%;
    background-color: var(--color-title);
    transition: background-color 300ms;
}

.qa-card-select.checked .qa-add-button > .qa-add-button-checked {
    opacity: 1;
}

.qa-card-select.checked {
    border-color: var(--color-blue);
    background-color: var(--color-blue-light);
}

.qa-card-select.checked .qa-card-container span {
    color: var(--color-blue) !important;
}

.qa-card-select.checked .qa-add-button {
    background-color: var(--color-green);
}

.qa-add-button-checked {
    position: absolute;
    width: 30px;
    height: 30px;
    opacity: 0;
    transition: opacity 300ms;
}

.qa-card-container {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.qa-card-title {
    color: var(--color-title);
    font-size: 17px;
}

.qa-card-price {
    color: var(--color-caption);
    font-size: 17px;
}

.back-to-delivery-method {
    display: flex;
    align-items: center;
    cursor: pointer;
    gap: 1rem;
}

.form-for-local-deliver,
.form-for-post-deliver {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

#form-for-local-deliver,
#form-for-post-deliver {
    display: flex;
    flex-direction: column;
    margin-top: 2rem;
    gap: 1rem;
}

.form-field-wrapper .custom-select-trigger input{
    padding: 0 !important;
}

.form-title {
    display: flex;
    align-items: center;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--color-title);
    font-size: 2.5rem;
    gap: 1.25rem;
}

.form-section-title {
    display: flex;
    align-items: center;
    margin: 0.5rem 0;
    font-size: 1.25rem;
    gap: 10px;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.form-field-date-input.locked {
    pointer-events: none;
    opacity: 0.6;
    cursor: not-allowed;
    user-select: none;
}

.form-field-label {
    font-size: 15px;
}

.form-field-wrapper {
    display: flex;
    gap: 1rem;
}

.form-field.required .form-field-label::after {
    margin-left: 0.25rem;
    color: var(--color-red);
    content: "*";
    font-size: 18px;
}

.form-field-input,
.custom-select-trigger {
    width: 100%;
    height: 58px !important;
    padding: 16px 20px !important;
    border: 1px solid var(--color-border);
    border-radius: 10px !important;
    background: #fff;
    transition: all 300ms !important;
    color: black !important;
    font-size: 16px !important;
}

.form-field-date-input-wrapper {
    display: flex;
    align-items: center;
    width: 100%;
    height: 58px !important;
    padding: 1rem 1.25rem;
    border: 1px solid var(--color-border);
    border-radius: 10px;
    background: #fff;
    cursor: text;
    transition: border-color 300ms;
    gap: 11px;
}

.form-field-date-input-wrapper:not(.error):has(input:disabled) {
    border-color: var(--color-border) !important;
}

.form-field-date-input {
    width: 100%;
    color: black !important;
}

.air-datepicker-body--day-name {
    color: var(--color-blue) !important;
    font-weight: bold !important;
}

.form-field-error-message {
    color: var(--color-red);
    font-size: 13px;
    margin-top: 0.25rem;
}

.form-field-input-wrapper {
    display: flex;
    flex-direction: row;
    gap: 0.5rem;
}

.custom-select-wrapper {
    display: flex;
    flex-direction: column;
    position: relative;
    width: 100%;
    user-select: none;
}

.custom-select {
    position: relative;
    cursor: pointer;
}

.custom-select-placeholder {
    color: var(--color-caption);
}

.custom-select-placeholder-wrapper {
    display: flex;
    align-items: center;
    gap: 11px;
}

.custom-select-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: border-color 0.3s ease;
}

.custom-select-trigger:hover,
.form-field-input:hover,
.form-field-input:focus,
.custom-select.open .custom-select-trigger,
.form-field-date-input-wrapper:hover,
.form-field-date-input-wrapper:focus-within {
    border-color: var(--color-blue);
}

.form-field-input.error,
.form-field-date-input-wrapper.error,
.custom-select.error .custom-select-trigger {
    border-color: var(--color-red) !important;
}

.custom-select-arrow {
    transition: transform 0.3s ease;
    font-size: 14px;
}

.custom-select.open .custom-select-arrow {
    color: var(--color-blue);
    transform: rotate(180deg);
}

.custom-options-wrapper {
    position: absolute;
    z-index: 999;
    top: calc(100% + 10px);
    right: 0;
    left: 0;
    display: none;
    overflow-y: auto;
    max-height: 250px;
    border: 1.5px solid var(--color-border);
    border-radius: 15px;
    background: #fff;
}

.custom-select-input {
    width: 100%;
    border: none !important;
}

.combobox-mode .custom-select-trigger {
    cursor: text;
}

.custom-options {
    display: flex;
    flex-direction: column;
    color: black;
}

.custom-option {
    padding: 12px 20px;
    margin: 6px 10px;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.25s ease, color 0.25s ease;
    font-weight: 500;
}

.custom-option-not-found {
    padding: 12px 20px;
    margin: 6px 10px;
    border-radius: 8px;
    cursor: auto;
    font-weight: 500;
}

.custom-option-between {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.custom-option:hover {
    color: var(--color-blue);
    background: var(--color-blue-light);
}

.custom-option.selected {
    color: #fff;
    background: var(--color-blue);
}

.custom-options::-webkit-scrollbar {
    width: 8px;
}

.custom-options::-webkit-scrollbar-thumb {
    border-radius: 20px;
    background: rgba(59, 130, 246, 0.5);
}

.custom-options::-webkit-scrollbar-track {
    background: transparent;
}

.form-result {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-grow: 1;
}

.form-result-detail {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.form-result-title {
    color: var(--color-title);
    font-weight: 500;
    font-size: 24px;
}

.form-result-description {
    text-align: center;
    font-size: 15px;
    max-width: 650px;
    color: var(--color-border-dark-200);
}

.form-result-pdf-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: var(--color-blue);
    color: white !important;
    border-radius: 10px;
    font-size: 14px;
    width: 100%;
    max-width: 197px;
    padding: 10px 20px;
}

.form-result-for-local .form-result-box {
    background-color: #f3f7fe;
    display: flex;
    flex-direction: column;
    gap: 10px;
    border-radius: 10px;
    padding: 27px;
}

.form-result-for-local .form-result-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.form-result-for-local .form-result-buttons a:first-child {
    background-color: var(--color-blue);
    color: white;
    border-radius: 10px;
    font-size: 14px;
    width: 100%;
    max-width: 200px;
    padding: 10px 20px;
}

.form-result-for-local .form-result-box {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    max-width: 600px;
    color: var(--color-border-dark-200);
}

.form-result-calendar-file {
    color: var(--color-blue);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-result-for-local .form-result-buttons a:last-child {
    color: var(--color-blue);
    font-size: 14px;
}

.form-submit-btn:disabled {
    opacity: 0.5;
    cursor: progress;
}

.form-switch-section {
    display: flex;
    flex-direction: column;
    margin: 2rem 0;
    gap: 1rem;
}

.form-switch-section .form-field-error-message{
    margin-top: -0.75rem !important;
}

.form-switch-field {
    display: flex;
    align-items: center;
    gap: 20px;
}

.custom-switch {
    position: relative;
    flex-shrink: 0;
    width: 50px;
    height: 25px;
    border-radius: 25px;
    background: #ccc;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.custom-switch.active {
    background-color: var(--color-blue);
}

.switch-handle {
    position: absolute;
    top: 2px;
    left: 2px;
    width: 21px;
    height: 21px;
    border-radius: 50%;
    background-color: #fff;
    transition: left 0.3s ease;
}

.custom-switch.active .switch-handle {
    left: 27px;
}

.custom-switch-label {
    cursor: pointer;
    user-select: none;
    font-size: 15px;
}

.custom-switch-label a {
    color: var(--color-blue);
}

.custom-switch-label-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-link-wrapper {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.form-link {
    color: var(--color-blue);
    font-size: 14px;
}

.form-link::before {
    display: inline-block;
    width: 20px;
    height: 1px;
    margin-right: 5px;
    background-color: var(--color-blue);
    content: "";
    vertical-align: middle;
}

.form-submit-btn {
    width: 100%;
    max-width: 377px;
    padding: 10px 1rem;
    border-radius: 10px;
    color: #fff;
    background: var(--color-blue);
}

.skeleton {
    border-radius: 4px;
    background-color: #d0d0d0;
    animation: pulse 1.5s ease-in-out infinite;
}

.faq-section {
    margin-top: 3rem;
}

.step-section {
    display: flex;
    flex-direction: column;
    min-height: 500px;
    margin-bottom: 4rem;
}

/* Spinner Styles */
.spinner-wrapper {
    position: relative;
    display: flex;
    height: 1.25rem;
    width: 1.25rem;
    color: var(--color-blue);
}

.spinner-circle1 {
    animation: spin 0.8s ease infinite;
    position: absolute;
    height: 100%;
    width: 100%;
    border-radius: 9999px;
    border: 2px solid;
    border-color: transparent transparent currentColor transparent;
}

.spinner-circle2 {
    animation: spin 0.8s linear infinite;
    position: absolute;
    height: 100%;
    width: 100%;
    border-radius: 9999px;
    border: 2px dotted;
    border-color: transparent transparent currentColor transparent;
    opacity: 0.75;
}

#contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-bottom: 3rem;
    overflow-y: auto;
}

#contact-form > button {
    max-width: 140px;
}

.contact-form-modal-content {
    max-height: 90dvh;
}

.model-selector-modal .model-selector-modal-close,
.contact-form-modal .contact-form-modal-close {
    background: unset !important;
    padding: unset !important;
}

.back-btn {
    display: flex;
    align-items: center;
    font-size: 1.25rem;
    font-weight: 700;
    gap: 0.5rem;
    color: var(--color-blue);
    cursor: pointer;
    width: fit-content;
}

.back-btn svg {
    width: 1.5rem;
    height: 1.5rem;
}

.price-box-container {
    display: flex;
    gap: 0.5rem;
}

.step-3 .price-box {
    margin-top: 1rem;
    max-width: 686px;
}

/* Spinner animation */
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Skeleton animation */
@keyframes pulse {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0.4;
    }
    100% {
        opacity: 1;
    }
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .repair-page {
        flex-direction: column;
        gap: 3rem;
    }

    .sidebar {
        width: 100%;
    }

    .select-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .custom-card-select {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .sidebar {
        gap: 1rem;
    }

    .stepper-mobile {
        display: flex;
        flex-direction: column;
        padding: 0.5rem;
        border: 1px solid var(--color-border);
        border-radius: 20px;
        background: var(--color-background);
    }

    .stepper-mobile-container {
        display: flex;
        align-items: center;
        padding: 1rem;
        gap: 0.5rem;
    }

    .stepper-mobile-item {
        display: flex;
        align-items: center;
        width: 26px;
        transition: all 300ms;
        gap: 0.5rem;
    }

    .stepper-mobile-item.active {
        width: 100%;
        transition: all 300ms;
    }

    .stepper-mobile-item.active .stepper-mobile-item-title {
        flex-grow: 1;
        border-color: var(--color-blue);
    }

    .stepper-mobile-item-bullet {
        z-index: 10;
        display: flex;
        align-items: center;
        flex-shrink: 0;
        justify-content: center;
        width: 24px;
        height: 24px;
        border-radius: 100%;
        color: white;
        background-color: var(--color-border-dark);
        transition: all 300ms;
    }

    .stepper-mobile-item-bullet span {
        position: absolute;
    }

    .stepper-mobile-item.active .stepper-mobile-item-bullet {
        background-color: var(--color-blue);
        box-shadow: 0px 0px 0px 3px var(--color-blue-light);
    }

    .stepper-mobile-item.completed .stepper-mobile-item-bullet {
        box-shadow: none;
    }

    .stepper-mobile-item-bullet > svg {
        transition: opacity 300ms;
    }

    .stepper-mobile-item.completed .stepper-mobile-item-bullet > svg {
        opacity: 1 !important;
    }

    .stepper-mobile-item-title {
        overflow: hidden;
        border-bottom: 1px solid var(--color-blue);
        color: var(--color-caption);
        transition: all 300ms;
        white-space: nowrap;
    }

    .stepper-mobile-item.active .stepper-mobile-item-title {
        color: var(--color-blue);
    }

    .stepper-mobile-item.completed .stepper-mobile-item-title {
        color: var(--color-title);
    }

    .stepper-mobile-item-bullet {
        width: 24px;
        height: 24px;
        border-radius: 100%;
    }

    .stepper-mobile-last-item .stepper-mobile-item-bullet {
        color: var(--color-border-dark-200);
    }

    .stepper-mobile-item[data-step="2"].completed .stepper-mobile-item-title {
        flex-grow: 1;
        border-color: var(--color-green);
        color: var(--color-green);
    }

    .stepper-mobile-item[data-step="2"].completed
    + .stepper-mobile-last-item
    > .stepper-mobile-item-bullet {
        color: #fff;
        background-color: var(--color-green);
    }

    .stepper-mobile-item[data-step="2"].completed {
        width: 100%;
    }

    .stepper-mobile-last-step {
        display: flex;
        flex-direction: column;
        border-radius: 15px;
        background-color: #fff;
        border: 1px solid var(--color-border);
    }

    .stepper-mobile-last-step-title {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 1rem;
        cursor: pointer;
        font-size: 14px;
    }

    .stepper-mobile.completed .stepper-mobile-last-step-title{
        color: #fff;
        background-color: var(--color-green);
        border-radius: 15px;
        transition: all 200ms;
    }

    .stepper-mobile.completed .stepper-mobile-last-step-title.opened{
        border-radius: 15px 15px 0 0;
    }

    .stepper-mobile-last-step .stepper-last-step-container{
        border-width: 1px 0 0 0;
    }

    .stepper-mobile-last-step-title div {
        display: flex;
        align-items: center;
        gap: 1rem;
    }

    .stepper-mobile-last-step-title svg {
        transition: transform 300ms;
    }

    .stepper-mobile-last-step-title svg path{
        fill: #1D1D1FFF;
    }

    .stepper-mobile.completed .stepper-mobile-last-step-title svg path{
        fill: #fff;
    }

    .stepper-mobile-last-step-title svg.rotated {
        transform: rotate(180deg);
    }

    .stepper-last-step-container-parent {
        display: none;
    }

    .stepper-last-step-container {
        border-radius: 0 0 14px 14px;
    }

    .price-box.empty {
        display: none !important;
    }

    /*.contact-form {*/
    /*    display: none;*/
    /*}*/

    .stepper {
        display: none;
    }

    .select-list {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }

    .step-title {
        margin-bottom: 2rem;
        font-size: 1.25rem;
    }

    .step-subtitle {
        font-size: 18px;
    }

    .custom-card-select {
        font-size: 17px;
    }

    .info-box {
        line-height: 20px;
        font-size: 14px;
    }

    .modal-content {
        width: 100%;
        max-width: 100%;
        height: 100%;
        max-height: 100%;
        padding: 1rem;
        padding-bottom: 0px;
        margin: 0;
        border-radius: 0;
    }

    .model-selector-title {
        line-height: 20px;
        font-size: 20px;
    }

    .model-selector-search {
        margin-top: 1rem;
    }

    #select-model-list {
        grid-template-columns: minmax(0, 1fr);
    }

    #select-model-list .skeleton:first-child {
        width: 67.925px !important;
        height: 90px !important;
    }

    #select-model-list .custom-select-model-card {
        flex-direction: row;
        max-width: 100%;
        padding: 20px 1rem;
    }

    #select-model-list .custom-select-model-card-image {
        width: 67.925px;
        height: 90px;
        aspect-ratio: 40/53;
    }

    .info-config-step div {
        align-items: start;
        flex-direction: column;
        gap: 0.5rem;
    }

    .form-field-input-wrapper {
        flex-direction: column;
    }

    .form-field-input-wrapper > div {
        display: flex;
        flex-direction: column;
    }

    .form-field-wrapper {
        flex-direction: column;
    }

    .form-submit-btn {
        max-width: 100%;
    }

    .form-link-wrapper {
        align-items: start;
        flex-direction: column;
        gap: 0.2rem;
    }

    .form-title {
        font-size: 26px;
    }

    .form-title svg {
        width: 24px;
        height: 24px;
    }

    .back-btn {
        width: 100%;
        font-size: 18px;
        gap: 0.5rem;
    }

    .back-btn svg {
        width: 1.25rem;
        height: 1.25rem;
    }

    .price-box-container {
        flex-direction: column;
        gap: 0rem;
    }
}
