button {
    outline: none!important;
}

/* CSS Variables */

:root {
    --dark-blue: #004ea7;
    --black-color: #1c2d41;
    --sky-color: #ebf4ff;
    --dark-sky-color: #3d97ff;
    --orange-color: #fd953c;
    --white: #ffffff;
    --quote-button-bg: #3693ff;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    text-decoration: none;
}

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    background-color: var(--white);
    color: #333333;
    line-height: 24px;
}

/* Main Container - 700px centered width */
.main-container {
    max-width: 700px;
    margin: 0 auto;
    background-color: var(--white);
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

/* Header Section */
.header-section {
    background-color: var(--white);
    padding: 20px 30px;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-section {
    display: flex;
    align-items: center;
}

.trustpilot-section {
    display: flex;
    align-items: center;
}

.trustpilot-widget {
    max-width: 155px;
}

.logo-image {
    width: 180px;
}

/* Step Slider */
.step-slider-container {
    padding: 20px 0;
    display: flex;
    justify-content: center;
}

.step-slider {
    width: 100%;
    max-width: 400px;
    height: 4px;
    background-color: #e0e0e0;
    position: relative;
}

.step-progress {
    height: 100%;
    background-color: var(--dark-sky-color);
    border-radius: 2px;
    width: 8%;
    transition: width 0.3s ease;
}

/* Main Content */
.main-content {
    padding: 0px 30px 0px;
}

/* Budget Selection Screen */
.budget-selection-container {
    text-align: center;
    padding: 30px 0;
    max-width: 400px;
    margin: 0 auto;
}

.main-title {
    font-size: 34px;
    font-weight: 700;
    color: var(--dark-blue);
    margin: 0 0 15px 0;
    line-height: 41px;
}

.title-container {
    margin-bottom: 40px;
}

.question-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--black-color);
    margin: 0;
    line-height: 29px;
}

.budget-options {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.budget-option {
    position: relative;
}

.budget-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.budget-option label {
    display: block;
    background-color: #efefef;
    color: var(--black-color);
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.budget-option input[type="radio"]:checked + label {
    background-color: var(--dark-blue);
    color: var(--white);
    border-color: var(--dark-blue);
}

.budget-option label:hover {
    background-color: var(--dark-sky-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Footer */
.footer {
    background-color: var(--white);
    padding: 30px 30px;
}

.quote-container {
    display: flex;
    justify-content: center;
}

.quote-cta {
    background-color: var(--quote-button-bg);
    color: var(--white);
    border: none;
    border-radius: 8px;
    padding: 15px 30px;
    font-size: 12px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 15px;
    width: 100%;
    justify-content: center;
    max-width: 400px;
}


.quote-cta i {
    font-size: 16px;
    color: var(--white);
}

.quote-cta span {
    text-align: center;
    line-height: 25px;
}

/* Responsive Design */

/* Edit Steps */
.editSteps {
    transition: all 0.3s ease;
}

/* Payment Amount Container */
.amount-input-wrapper {
    display: flex;
    align-items: center;
    background-color: #efefef;
    border-radius: 8px;
    border: 1px solid var(--black-color);
    overflow: hidden;
    transition: all 0.3s ease;
}

.amount-input-wrapper:focus-within {
    border-color: var(--dark-blue);
}

.amount-input-wrapper:focus-within .currency-symbol {
    border-color: var(--dark-blue);
}

.currency-symbol {
    color: var(--black-color);
    padding: 15px 20px;
    font-size: 18px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 60px;
    border-right: 1px solid var(--black-color);
}

.amount-input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    background-color: transparent;
    font-size: 18px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    color: var(--black-color);
    outline: none;
}

.amount-input::placeholder {
    color: var(--black-color);
    font-weight: 400;
}

/* Section Wrapper Spacing */
.section-wrapper + .section-wrapper {
    margin-top: 40px;
}

/* Additional Income Description */
.section-wrapper-description {
    margin-top: 30px;
    text-align: left;
}

.section-wrapper-description p {
    font-size: 12px;
    color: var(--black-color);
    line-height: 24px;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
}

/* Income Instructions */
.income-instructions-container {
    text-align: center;
    margin-top: 15px;
    margin-bottom: 30px;
}

.income-instruction-line {
    font-size: 12px;
    color: var(--black-color);
    line-height: 24px;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
}

.income-instruction-bold {
    font-weight: 700;
}

/* Income Category Headers */
.income-category-headers {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.income-category-header-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--black-color);
    font-family: 'Montserrat', sans-serif;
    text-align: left;
    flex: 1;
}

.income-category-header-amount {
    font-size: 12px;
    font-weight: 600;
    color: var(--black-color);
    font-family: 'Montserrat', sans-serif;
    text-align: left;
    width: 120px;
    line-height: 18px;
}

/* Income Categories */
.income-categories {
    margin-bottom: 30px;
}

.income-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.income-item label {
    font-size: 16px;
    color: var(--black-color);
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    flex: 1;
    text-align: left;
}

/* Smaller Income Input Fields */
.income-amount-wrapper {
    display: flex;
    align-items: center;
    background-color: #efefef;
    border-radius: 4px;
    border: 1px solid var(--black-color);
    overflow: hidden;
    transition: all 0.3s ease;
    width: 120px;
    height: 40px;
}

.income-amount-wrapper:focus-within {
    border-color: var(--dark-blue);
}

.income-amount-wrapper:focus-within .currency-symbol {
    border-color: var(--dark-blue);
}

.income-amount-wrapper .currency-symbol {
    color: var(--black-color);
    padding: 0 10px;
    font-size: 16px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 30px;
    border-right: none;
    height: 100%;
}

.income-amount-input {
    flex: 1;
    padding: 0 10px;
    border: none;
    background-color: transparent;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    color: var(--black-color);
    outline: none;
    height: 100%;
    width: 100%;
}

.income-amount-input::placeholder {
    color: var(--black-color);
    font-weight: 400;
}

/* Total Income Row */
.total-income-row {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid var(--black-color);
}

.total-income-row label {
    font-weight: 700;
    color: var(--dark-sky-color);
}

.total-income-row .income-amount-wrapper {
    background-color: var(--sky-color);
}

/* Navigation Buttons */
.navigation-buttons {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
    gap: 20px;
}

.navigation-submit-buttons {
    justify-content: center;
    gap: 0px;
}

.navigation-submit-buttons.next-button {
    font-size: 24px;
}

.next-button-container {
    text-align: right;
}

.next-button {
    background-color: var(--dark-blue);
    color: var(--white);
    border: 2px solid var(--dark-blue);
    border-radius: 8px;
    padding: 15px 30px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    display: inline-block;
}

.next-button:hover {
    background-color: var(--dark-blue);
    border-color: var(--dark-blue);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Back Button Container */
.back-button-container {
    text-align: left;
    margin-top: 0;
}

/* Back Button */
.back-button {
    background-color: var(--white);
    color: var(--dark-blue);
    border: 2px solid var(--dark-blue);
    border-radius: 8px;
    padding: 15px 30px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    display: inline-block;
}

.back-button:hover {
    background-color: var(--dark-blue);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Mobile Styles - max-width: 768px */
@media (max-width: 768px) {
    .main-container {
        max-width: 100%;
        margin: 0;
        box-shadow: none;
    }
    
    .header-section {
        padding: 15px;
    }
    
    .main-content {
        padding: 15px;
    }
    
    .budget-selection-container {
        padding: 40px 0;
    }
    
    .main-title {
        font-size: 28px;
        margin: 0 0 15px 0;
    }
    
    .question-title {
        font-size: 16px;
        margin: 0 0 20px 0;
    }
    .title-container {
        margin-bottom: 20px;
    }

    .budget-options {
        gap: 15px;
        max-width: 100%;
    }
    
    .budget-option label {
        padding: 18px 25px;
        font-size: 16px;
    }
    
    .footer {
        padding: 20px 15px;
    }
    
    .logo-image {
        width: 120px;
    }
    
    .trustpilot-widget {
        max-width: 150px;
    }
    
    .quote-cta {
        padding: 15px 20px;
        font-size: 14px;
        gap: 12px;
    }
    
    .quote-cta i {
        font-size: 14px;
    }
    
    .quote-cta span {
        font-size: 9px;
    }
}

/* Dependents Count Dropdown */
.dependents-count-container {
    margin: 30px 0;
}
.dropdown-wrapper {
    position: relative;
}
.dropdown-control {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid var(--black-color);
    border-radius: 8px;
    background-color: #efefef;
    font-size: 18px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    color: var(--black-color);
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%231c2d41' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 12px center;
    background-repeat: no-repeat;
    background-size: 26px;
    padding-right: 40px;
}
.dropdown-control:focus {
    outline: none;
    border-color: var(--dark-blue);
}

/* Dependents Age Inputs */
.dependents-age-container {
    margin-top: 30px;
}
.age-input-label {
    font-size: 10px;
    color: var(--black-color);
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 15px;
    text-align: right;
}
.dependents-age-inputs {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.dependent-age-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.dependent-age-item label {
    font-size: 16px;
    color: var(--black-color);
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    flex: 1;
    text-align: left;
}


/* Auto complete dropdown */
body .ui-menu .ui-menu-item-wrapper {
    padding: 10px 15px 10px 15px;
    font-size: 18px;
}

/* Finance Summary Table */
.finance-summary-table {
    margin-top: 30px;
    background-color: var(--white);
    border-radius: 4px;
    overflow: hidden;
    border: 2px solid #d9d9d9;
}
.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    border-bottom: 1px solid #d9d9d9;
}
.summary-row:nth-child(odd) {
    background-color: #f2eded;
}
.summary-row:nth-child(even) {
    background-color: #ffffff;
}
.summary-row:last-child {
    border-bottom: none;
}
.summary-label {
    font-size: 14px;
    color: var(--black-color);
    font-weight: 400;
    font-family: 'Montserrat', sans-serif;
    flex: 1;
    text-align: left;
}
.summary-value {
    font-size: 14px;
    color: var(--black-color);
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    text-align: right;
}

/* Car Selection Description */
.car-selection-description {
    margin-top: 30px;
    text-align: left;
}
.car-selection-description p {
    font-size: 16px;
    color: var(--black-color);
    line-height: 24px;
    margin: 0 0 15px 0;
    font-family: 'Montserrat', sans-serif;
}
.car-selection-description p:last-child {
    margin-bottom: 0;
}

/* Question Group Styling */
.question-group {
    margin-bottom: 30px;
}

.question-group:last-child {
    margin-bottom: 0;
}

.question-group .question-title {
    margin-bottom: 15px;
}

/* Conditional Input Container */
.payment-amount-container {
    margin-top: 20px;
}

.payment-amount-container .question-title {
    margin-bottom: 15px;
}

/* Sign-in Form Styling */
.question-group .amount-input-wrapper {
    margin-bottom: 20px;
}

.question-group .amount-input-wrapper:last-child {
    margin-bottom: 0;
}

.question-group .amount-input {
    text-align: center;
}

/* Forgot Password Link */
.forgot-password-container {
    text-align: left;
    margin-top: 10px;
}

.forgot-password-link {
    color: var(--black-color);
    text-decoration: underline;
    font-weight: 700;
    font-size: 14px;
    font-family: 'Montserrat', sans-serif;
}

/* Title Options Styling */
.title-options {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.title-option {
    flex: 1;
    max-width: 100px;
}

.title-option label {
    display: block;
    background-color: #efefef;
    color: var(--black-color);
    padding: 15px 20px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    text-align: center;
}

.title-option input[type="radio"] {
    opacity: 0;
    visibility: hidden;
}

.title-option input[type="radio"]:checked + label {
    background-color: var(--dark-blue);
    color: var(--white);
    border-color: var(--dark-blue);
}

.title-option label:hover {
    background-color: var(--sky-color);
    border-color: var(--dark-blue);
}


/* PPSN Description Styling */
.ppsn-description {
    margin-top: 20px;
}

.ppsn-description p {
    margin: 0;
    font-size: 14px;
    color: var(--black-color);
    font-family: 'Montserrat', sans-serif;
    line-height: 20px;
}

/* Address Label Left Alignment */
.address-label-left {
    text-align: left !important;
}

/* Residency Note Styling */
.residency-note {
    margin-top: 20px;
    text-align: center;
}

.residency-note p {
    margin: 0;
    font-size: 14px;
    color: var(--black-color);
    font-family: 'Montserrat', sans-serif;
    line-height: 20px;
}

/* Dropdown Spacing in Question Group */
.question-group .dropdown-wrapper + .dropdown-wrapper {
    margin-top: 15px;
}

/* Employer Note Styling */
.employer-note {
    margin-top: 20px;
    text-align: center;
}

.employer-note p {
    margin: 0;
    font-size: 14px;
    color: var(--black-color);
    font-family: 'Montserrat', sans-serif;
    line-height: 20px;
}

/* Verification Code Message Styling */
.verification-code-message {
    background-color: var(--sky-color);
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 30px;
    text-align: center;
}

.verification-code-message p {
    margin: 0;
    font-size: 16px;
    color: var(--black-color);
    font-family: 'Montserrat', sans-serif;
    line-height: 24px;
}

.verification-code-message strong {
    font-weight: 700;
    color: var(--dark-blue);
}

/* Checkbox Label Styling */
.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    color: var(--black-color);
    margin-top: 20px;
}

.checkbox-label input[type="checkbox"] {
    margin-right: 10px;
    width: 20px;
    height: 20px;
    cursor: pointer;
}


/* Submit Button Container Styling */
.submit-button-container {
    margin-top: 30px;
    text-align: center;
}

.submit-button {
    width: 100%;
    max-width: 400px;
    padding: 15px 30px;
    background-color: var(--dark-blue);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-button:hover {
    background-color: var(--dark-blue);
    opacity: 0.9;
}

.submit-button:active {
    transform: scale(0.98);
}

/* ===================================
   REUSABLE INPUT COMPONENTS
   =================================== */

/* Amount Input Wrapper - Postfix Currency Symbol */
.amount-input-wrapper-postfix {
    display: flex;
    align-items: center;
    background-color: #efefef;
    border-radius: 8px;
    border: 1px solid var(--black-color);
    overflow: hidden;
    transition: all 0.3s ease;
}

.amount-input-wrapper-postfix .currency-symbol-postfix {
    color: var(--black-color);
    padding: 15px 20px;
    font-size: 18px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 60px;
    border-left: 1px solid var(--black-color);
}

.amount-input-wrapper-postfix input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    background-color: transparent;
    font-size: 18px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    color: var(--black-color);
    outline: none;
    text-align: left;
}

.amount-input-wrapper-postfix:focus-within {
    border-color: var(--dark-blue);
}

.amount-input-wrapper-postfix:focus-within .currency-symbol-postfix {
    border-color: var(--dark-blue);
}

/* Multiselect using Select2 */
.select2-container {
    width: 100% !important;
}

.select2-container--default .select2-selection--multiple {
    background-color: #efefef;
    border: 1px solid var(--black-color);
    border-radius: 8px;
    min-height: 54px;
    padding: 5px 10px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
    background-color: var(--dark-blue);
    color: var(--white);
    border: none;
    border-radius: 6px;
    padding: 5px 12px;
    margin: 5px 5px 5px 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: default;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
    color: var(--white);
    margin-right: 8px;
    font-weight: 700;
    position: static;
    border-right: 0;
}

.select2-container .select2-search--inline .select2-search__field {
    margin-top: 10px;
    font-size: 18px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    color: var(--black-color);
    height: 22px;
}

.select2-container--default .select2-selection--multiple.select2-selection--clearable{
    text-align: left;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
    color: #ffcccb;
}

.select2-container--default .select2-selection--multiple .select2-selection__rendered {
    padding: 0;
}

.select2-container--default .select2-selection--multiple .select2-selection__placeholder {
    color: #999;
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    line-height: 44px;
    padding-left: 5px;
}

.select2-container--default.select2-container--focus .select2-selection--multiple {
    border-color: var(--dark-blue);
}

/* Improve Checkbox Design */
.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    color: var(--black-color);
    margin-top: 20px;
}

.checkbox-label input[type="checkbox"] {
    margin-right: 12px;
    width: 22px;
    height: 22px;
    cursor: pointer;
    accent-color: var(--dark-blue);
    flex-shrink: 0;
}

.checkbox-label span {
    line-height: 24px;
    font-size: 14px;
    user-select: none;
}

/* Checkbox Options (styled like radio buttons) */
.checkbox-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.checkbox-option {
    display: flex;
    align-items: center;
}

.checkbox-option input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
    margin: 0;
    pointer-events: none;
}

.checkbox-option label {
    display: block;
    background-color: #efefef;
    color: var(--black-color);
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    flex: 1;
    margin: 0;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    width: 100%;
}

.checkbox-option input[type="checkbox"]:checked + label {
    background-color: var(--dark-blue);
    color: var(--white);
    border-color: var(--dark-blue);
}

/* Radio Button Design (Improved) */
.budget-option input[type="radio"] {
    width: 22px;
    height: 22px;
    accent-color: var(--dark-blue);
    cursor: pointer;
}

/* Common Input Design (Text, Email, Tel, etc.) */
.common-input-wrapper {
    background-color: #efefef;
    border-radius: 8px;
    border: 1px solid var(--black-color);
    transition: all 0.3s ease;
}

.common-input-wrapper input {
    width: 100%;
    padding: 15px 20px;
    border: none;
    background-color: transparent;
    font-size: 18px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    color: var(--black-color);
    outline: none;
}

.common-input-wrapper:focus-within {
    border-color: var(--dark-blue);
}

/* Common Textarea Design */
.common-textarea-wrapper {
    background-color: #efefef;
    border-radius: 8px;
    border: 1px solid var(--black-color);
    transition: all 0.3s ease;
}

.common-textarea-wrapper textarea {
    width: 100%;
    padding: 15px 20px;
    border: none;
    background-color: transparent;
    font-size: 18px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    color: var(--black-color);
    outline: none;
    resize: vertical;
    min-height: 120px;
}

.common-textarea-wrapper:focus-within {
    border-color: var(--dark-blue);
}


@media (max-width: 768px) {
    .checkbox-label span{
        font-size: 12px;
    }
    .back-button, .next-button, .dropdown-control{
        font-size: 16px;
    }

    .additional-income-description p, .car-selection-description p, .additional-income-description{
        font-size: 12px;
        line-height: 20px;
    }

    .title-option label{
        font-size: 14px;
    }

    .income-instructions-container p{
        font-size: 14px;
    }
    .amount-input{
        font-size: 14px;
    }
    .amount-input-wrapper-postfix input {
        width: calc(100% - 60px);
    }
    .checkbox-label{
        text-align: left;
        align-items: flex-start;
    }
    .currency-symbol, .amount-input-wrapper-postfix .currency-symbol-postfix{
        font-size: 16px;
    }
}

.action-selection-container {
    text-align: center;
    padding: 0px 0;
    max-width: 400px;
    margin: 0 auto;
}