/* Fast Courier-inspired color scheme and styling */
:root {
    /* --primary-color: #ff8200; */
    --primary-color: #0049b0;
    /* --primary-hover: #e67600; */
    --primary-hover: #1054b3;
    --secondary-color: #2d3748;
    --light-gray: #f7fafc;
    --border-color: #e2e8f0;
    --text-color: #4a5568;
    --error-color: #e53e3e;
    --success-color: #38a169;
}
body,
p,
label,
span,
a,
li,
ul,
ol,
h1,
h2,
h3,
h4,
h5,
h6,
input,
button,
textarea,
select,
blockquote,
caption,
td,
th,
strong,
em,
small {
    font-family: 'Montserrat', sans-serif !important;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', 'Arial', sans-serif;
}

body {
    background-color: #f5f8fa;
    color: var(--text-color);
    line-height: 1.5;
    padding: 0;
    margin: 0;
}

.form-container {
    max-width: 1200px;
    margin: 0 auto;
    background: white;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

h1,
h2,
h3,
h4 {
    color: var(--secondary-color);
    font-weight: 600;
}

h1 {
    text-align: center;
    margin: 20px 0;
    font-size: 1.8rem;
}

h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

h3 {
    font-size: 1.5rem;
    margin: 20px 0 15px;
}

/* Step indicators - horizontal progress bar style */
.step-indicator {
    display: flex;
    justify-content: space-between;
    background: white;
    border-bottom: 1px solid var(--border-color);
    padding: 0;
    position: relative;
}

/* .step-indicator::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--border-color);
    z-index: 1;
} */

.step {
    flex: 1;
    text-align: center;
    padding: 25px 10px;
    position: relative;
    font-size: 14px;
    z-index: 2;
    font-weight: 500;
    color: var(--text-color);
    opacity: 0.7;
    font-weight: 700;
  font-family: 'Montserrat', sans-serif;
}

/* .step::before {
    content: '';
    display: block;
    width: 30px;
    height: 30px;
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 50%;
    margin: 0 auto 10px;
    z-index: 2;
} */

.step.active {
    color: var(--primary-color);
    opacity: 1;
}

.step.active::before {
    border-color: var(--primary-color);
    background: var(--primary-color);
}

.step.completed {
    /* color: var(--success-color); */
    opacity: 1;
}

.step.completed::before {
    /* border-color: var(--success-color); */
    border: 4px solid #3c2323;
    /* background: var(--success-color); */
    background:rgb(42 116 219 / 30%);
}

/* Form Styles */
.form-step {
    display: none;
    padding: 30px;
}

.form-navigation {
    margin-top: 10px;
    display: flex;
    flex-direction: row;
    gap: 10px;
}

.form-step.active {
    display: block;
}

.form-group {
    margin-bottom: 20px;
}

.form-container .form-row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px 20px;
}

.form-col {
    flex: 1;
    padding: 0 10px;
    min-width: 200px;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--secondary-color);
    font-size: 14px;
}

/* input[type="text"],
input[type="email"],
input[type="date"],
input[type="number"],
select,
textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 14px;
    transition: all 0.2s;
    background-color: #fff;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="date"]:focus,
input[type="number"]:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--border-color);
    /* box-shadow: 0 0 0 3px rgba(255, 130, 0, 0.15); */
} */

/* Modern Radio buttons */
.radio-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.radio-option {
    position: relative;
    flex: 1;
    min-width: 120px;
}

/* .radio-option input[type="radio"] {
            position: absolute;
            opacity: 0;
            width: 0;
            height: 0;
        } */
.radio-option input[type="radio"] {
    position: static;
    opacity: 1;
    width: auto;
    height: auto;
    margin-right: 6px;
}

.radio-option label {
    display: block;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
    margin: 0;
}

.radio-option input[type="radio"]:checked+label {
    background-color: rgba(255, 130, 0, 0.1);
    border-color: var(--primary-color);
    color: var(--primary-color);
    font-weight: 500;
}

.radio-option label:hover {
    border-color: var(--primary-color);
}

/* Modern Slider (Toggle) */
.toggle-container {
    display: flex;
    align-items: center;
    margin-top: 5px;
}

.toggle {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
    margin-right: 10px;
}

.toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

/* popup css start */
.info-icon {
    display: inline-block;
    margin-left: 5px;
    background-color: #333;
    color: white;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    text-align: center;
    font-size: 12px;
    cursor: pointer;
    line-height: 18px;
}

.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(44, 62, 80, 0.5);
    z-index: 1000;
}

/* .popup-box {
    background: white;
    width: 400px;
    margin: 15% auto;
    padding: 20px;
    border-radius: 8px;
    text-align: left;
} */
 .popup-box {
    background: white;
    width: 400px;
    max-width: 95vw;
    padding: 20px;
    border-radius: 8px;
    text-align: left;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1100;
    box-shadow: 0 4px 24px rgba(0,0,0,0.12);
}

.popup-close-btn {
    margin-top: 15px;
    padding: 8px 16px;
    background-color: var(--primary-color);
    border: none;
    color: white;
    cursor: pointer;
    border-radius: 4px;
}

/* popup css end */

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #cbd5e0;
    transition: .3s;
    border-radius: 26px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: .3s;
    border-radius: 50%;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

input:checked+.slider {
    background-color: var(--primary-color);
}

input:checked+.slider:before {
    transform: translateX(24px);
}

.toggle-label {
    margin-left: 8px;
    font-weight: 500;
}

/* Package section */
.package-section {
    border: 1px solid var(--border-color);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    background: #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.package-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

.dimension-group {
    display: flex;
    gap: 10px;
    align-items: flex-end;
}

.dimension-input {
    flex: 1;
}

.unit-select {
    width: 80px;
}

/* Quantity input with styled buttons */
.quantity-input {
    display: flex;
    align-items: center;
    max-width: 45%;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    overflow: hidden;
    gap: 10px;
    padding: 10px;
    width: 100%;
    padding: 14px 18px;
    margin: 12px 0;
    font-size: 16px;
    color: #000;
    background-color: #fff;
    border: 2px solid transparent;
    border-radius: 12px;
    outline: none;
    background-clip: padding-box;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    box-shadow: 0 0 0 1px #ccc;
}

.quantity-input input {
    width: 50px;
    border: none;
    text-align: center;
    padding: 10px 0;
    font-size: 14px;
    font-weight: 500;
}

.qty-btn {
    width: 40px;
    height: 40px;
    background: #f7fafc;
    border: none;
    cursor: pointer;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.qty-btn:hover {
    background: #edf2f7;
}

/* Styled buttons */
.add-package-btn,
.remove-package-btn,
.btn {
    padding: 10px 15px;
    border-radius: 4px;
    font-weight: 500;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.2s;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.add-package-btn {
    margin-top: 15px;
    background: white;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.add-package-btn:hover {
    /* background: rgba(255, 130, 0, 0.1); */
    background: #ddebfe;
}

.remove-package-btn {
    background: white;
    color: var(--error-color);
    border: 1px solid var(--error-color);
}

.remove-package-btn:hover {
    background: rgba(229, 62, 62, 0.1);
}

.btn {
    min-width: 120px;
    height: 45px;
}

.btn-prev {
    background-color: white;
    color: var(--secondary-color);
    border: 1px solid black !important;
}

.btn-prev:hover {
    background-color: #f7fafc;
}

.btn-next,
.btn-submit {
    background-color: var(--primary-color);
    color: white;
}

.btn-next:hover,
.btn-submit:hover {
    background-color: var(--primary-hover);
    color: white !important;
}

.form-all-link {
    color: var(--primary-color);
}
.form-all-link:hover {
    color: var(--primary-color);
}

/* Quotes table */
/* .quotes-table {
            width: 100%;
            border-collapse: separate;
            border-spacing: 0;
            margin-bottom: 20px;
            border: 1px solid var(--border-color);
            border-radius: 8px;
            overflow: hidden;
        }
        
        .quotes-table th, .quotes-table td {
            padding: 15px;
            text-align: left;
        }
        
        .quotes-table th {
            background-color: #f7fafc;
            font-weight: 500;
            color: var(--secondary-color);
            font-size: 14px;
            border-bottom: 1px solid var(--border-color);
        }
        
        .quotes-table tr {
            border-bottom: 1px solid var(--border-color);
        }
        
        .quotes-table tr:last-child {
            border-bottom: none;
        }
        
        .quotes-table tr:hover {
            background-color: #f7fafc;
        }
        
        .quotes-table td:first-child {
            width: 60px;
        } */
.quote-header {
    display: flex;
    font-weight: bold;
    padding: 10px 20px;
    border-bottom: 2px solid #ddd;
    font-size: 14px;
    color: #333;
}

.quote-header small {
    font-weight: normal;
    color: #777;
    display: block;
    font-size: 11px;
}

/* Quote row */
.quote-row {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    border: 1px solid #ddd;
    border-radius: 12px;
    margin-top: 10px;
    background: #fff;
    transition: box-shadow 0.2s;
}

.quote-row:hover {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.quote-row.selected {
    /* border: 2px solid #ffa500; */
    border: 2px solid #0049b0;
    background-color: #fffaf0;
    box-shadow: 0 0 0 2px #3445dd33;
}

/* Column widths */
.quote-col {
    flex: 1;
}

.quote-col.carrier {
    flex: 1;
    text-align: center;
}

.quote-col.service {
    flex: 2;
}

.quote-col.price,
.quote-col.warranty,
.quote-col.earliest {
    flex: 1;
    text-align: center;
}

.quote-col.action {
    flex: 0 0 120px;
    text-align: center;
}

/* Carrier logo */
.carrier-logo {
    max-width: 80px;
    height: auto;
    display: block;
    margin: 0 auto 5px;
}

/* Stars */
.stars {
    color: orange;
    font-size: 1rem;
}

/* Price */
.price-value {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--primary-color);
}

/* Button */
.buy-now {
    background: var(--primary-color);
    color: #fff;
    border: none;
    padding: 8px 16px;
    border-radius: 20px;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.3s;
}

.buy-now:hover {
    background: #0049b0;
}

/* Custom radio for quote table */
/* .quote-radio {
            position: relative;
            display: inline-block;
            width: 20px;
            height: 20px;
        }
        
        .quote-radio input {
            position: absolute;
            opacity: 0;
        }
        
        .quote-radio-mark {
            position: absolute;
            top: 0;
            left: 0;
            height: 20px;
            width: 20px;
            background-color: #fff;
            border: 2px solid var(--border-color);
            border-radius: 50%;
        }
        
        .quote-radio input:checked ~ .quote-radio-mark {
            border-color: var(--primary-color);
        }
        
        .quote-radio-mark:after {
            content: "";
            position: absolute;
            display: none;
            top: 4px;
            left: 4px;
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--primary-color);
        }
        
        .quote-radio input:checked ~ .quote-radio-mark:after {
            display: block;
        } */

/* Terms and conditions */
.terms-container {
    border: 1px solid var(--border-color);
    padding: 20px;
    margin-bottom: 20px;
    max-height: 200px;
    overflow-y: auto;
    background: #fff;
    border-radius: 8px;
}

.terms-group {
    margin-bottom: 15px;
    position: relative;
    padding-left: 30px;
}

.terms-group label {
    font-weight: normal;
    cursor: pointer;
}

.terms-group input {
    position: absolute;
    /* opacity: 0; */
    cursor: pointer;
    /* height: 0;
            width: 0; */
    left: 0;
}

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #fff;
    border: 2px solid var(--border-color);
    border-radius: 3px;
}

.terms-group input:checked~.checkmark {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.terms-group input:checked~.checkmark:after {
    display: block;
}

.email-input-row {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}

.remove-email-btn {
    background: #fff;
    color: #e53e3e;
    border: 1px solid #e53e3e;
    border-radius: 4px;
    padding: 6px 12px;
    cursor: pointer;
    font-size: 13px;
}

.remove-email-btn:hover {
    background: #ffeaea;
}

/* Payment section */
.payment-options {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 20px;
}

.payment-option {
    flex: 1;
    min-width: 150px;
    border: 1px solid var(--border-color);
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
}

.payment-option:hover {
    border-color: var(--primary-color);
}

.payment-option.selected {
    border-color: var(--primary-color);
    background-color: rgba(255, 130, 0, 0.05);
}

#orderSummary {
    background: #f7fafc;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

#orderSummary h4 {
    margin-top: 15px;
    margin-bottom: 10px;
    font-size: 16px;
    color: var(--secondary-color);
}

#orderSummary p {
    margin-bottom: 8px;
    font-size: 14px;
}

/* Error messages */
.error-message {
    color: var(--error-color);
    font-size: 12px;
    margin-top: 5px;
    display: none;
}

input.error,
select.error,
textarea.error {
    border-color: var(--error-color);
}

/* Responsive adjustments */
/* @media (max-width: 768px) {
    .form-col {
        flex: 100%;
        margin-bottom: 15px;
    }

    .step-indicator {
        overflow-x: auto;
        padding-bottom: 10px;
    }

    .step {
        min-width: 120px;
        white-space: nowrap;
    }

    .form-step {
        padding: 20px 15px;
    }
} */


@media (max-width: 1024px) {
    .form-container {
        max-width: 98vw;
        margin: 10px;
        padding: 0;
    }
    .form-step {
        padding: 20px 10px;
    }
}

@media (max-width: 768px) {
    .form-step {
        padding: 15px 5px;
    }
    .step-indicator::before{
        all:unset;
    }
    .step.active {
    /* background: rgba(0, 73, 176, 0.5); */
    color: black;
    font-size: 20px;
    text-align: center;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    font-family: 'Montserrat';
    }
    .form-container .form-row {
        flex-direction: column;
        margin: 0;
    }
    .form-col {
        flex: 100%;
        min-width: 0;
        padding: 0;
        margin-bottom: 15px;
    }
    .package-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    .step-indicator {
        flex-direction: row;
        overflow-x: auto;
        padding-bottom: 10px;
        font-size: 12px;
    }
    .step {
    font-size: 20px !important;
    text-align: center !important;
    }
    .step {
        min-width: 110px;
        padding: 15px 5px;
    }
    .quote-header,
    .quote-row {
        flex-direction: column;
        align-items: flex-start;
        padding: 10px 5px;
        gap: 8px;
    }
    .quote-col {
        width: 100%;
        flex: unset;
        text-align: left !important;
        position: relative;
        padding-left: 120px;
        min-height: 32px;
        box-sizing: border-box;
    }
    .quote-col::before {
        content: attr(data-label) ": ";
        position: absolute;
        left: 0;
        top: 0;
        font-weight: bold;
        color: #888;
        font-size: 12px;
        width: 110px;
        white-space: normal;
    }
    .quote-col[data-label=""]::before {
        content: "";
    }
    .popup-box {
        width: 95vw;
        min-width: 0;
        margin: 30% auto;
        padding: 10px;
    }
    #orderSummary,
    #orderSummaryStep3,
    #step2Summary {
        padding: 10px;
        font-size: 13px;
    }
    .form-navigation {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    .btn {
        width: 100%;
        min-width: unset;
        margin-bottom: 0;
    }
    .terms-container {
        padding: 10px;
        font-size: 13px;
    }
    .step-indicator {
        flex-direction: column;
        overflow-x: unset;
        border-bottom: none;
        align-items: flex-start;
        padding-bottom: 0;
        padding-right: 10px;
    }
    .step {
        min-width: 0;
        width: 100%;
        border-bottom: 1px solid var(--border-color);
        border-right: none;
        padding: 15px 10px;
        box-sizing: border-box;
        text-align: left;
    }
    .step:last-child {
        border-bottom: none;
    }
    .order-summary-flex {
        flex-direction: column !important;
        gap: 0 !important;
    }
    .order-summary-flex > div {
        border-right: none !important;
        border-bottom: 1px solid #e2e8f0 !important;
        padding: 15px 0 !important;
    }
    .order-summary-flex > div:last-child {
        border-bottom: none !important;
    }
    .step{
    clip-path: polygon(0 0, 100% 0, 100% 80%, 50% 100%, 0 80%)  !important;
    padding: 20px 0px 30px 20px !important;  }
}

@media (max-width: 600px) {
    .popup-box {
        width: 95vw !important;
        max-width: 400px;
        border-radius: 8px;
        padding: 16px !important;
    }
    .popup-overlay {
        padding: 0 2vw;
    }
}

@media (max-width: 480px) {
    .form-container {
        max-width: 100vw;
        margin: 0;
        border-radius: 0;
        box-shadow: none;
    }
    .form-step {
        padding: 8px 2px;
    }
    .step {
        min-width: 90px;
        padding: 10px 2px;
        font-size: 11px;
    }
    .popup-box {
        width: 99vw;
        margin: 40% auto;
        padding: 5px;
    }
}







/* Step indicator wrapper (top "1 of 5" circle + label) */
.step .circle-progress {
  display: none !important;
}

/* Optional: adjust step padding if needed */
.step {
  padding-left: 0px !important;
}
.step-circle-wrapper {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  font-family: 'Montserrat', sans-serif;
}

/* Top circle showing current step out of total */
.step-circle,
.top-progress {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-weight: bold;
  font-size: 14px;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  border: 4px solid #00c853;
}

/* If using conic gradient in top-progress */
.top-progress {
  background: conic-gradient(#00c853 0%, #ffffff 0%);
  border: none;
}

/* Label beside the top circle */
.step-circle-labels {
  display: flex;
  flex-direction: column;
}

.step-circle-labels strong {
  font-size: 16px;
  color: #333;
}

.step-circle-labels small {
  font-size: 12px;
  color: #888;
}

/* Step container styles */
.step {
  position: relative;
  padding-left: 50px;
  margin-bottom: 20px;
  font-family: 'Montserrat', sans-serif;
}

/* Circular progress for individual step numbers */
.step .circle-progress {
  position: absolute;
  top: 0;
  left: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: conic-gradient(#e0e0e0 0%, #e0e0e0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 12px;
  color: #000;
}

/* Step title text beside each number */
.step-title {
  font-size: 14px;
  font-weight: 500;
  color: #333;
  font-family: 'Montserrat', sans-serif;
}

.step.active {
   color: black;
    font-weight: 700;
    /* clip-path: polygon(0 0, 90% 0, 100% 50%, 90% 100%, 0 100%); */
    padding: 15px 40px 15px 20px;
    /* background: linear-gradient(90deg, #0049b0, #000); */
    background-color: UNSET;
}
/* .step.active::before {
    background: rgba(255, 0, 0, 0.8);
    border: 4px solid #3c2323;
} */
.step.completed{
    background: rgb(42 116 219 / 30%);
    color: black;
    font-weight: 700;
    clip-path: polygon(0 0, 90% 0, 100% 50%, 90% 100%, 0 100%);
     padding: 15px 40px 15px 20px;
}
.step {
    margin-left: 10px;
    margin-right: 10px;
}
.step-indicator {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 12px;
  background-color: UNSET  !important;
  border-radius: 8px;
  font-size: 14px;
  color: #333;
  flex: 1;
  text-align: center;
  font-weight: 700;
  clip-path: polygon(0 0, 90% 0, 100% 50%, 90% 100%, 0 100%);
    padding: 15px 40px 15px 20px;
}

.step span {
  display: block;
  font-size: 18px;
  font-weight: bold;
  color: #0049b0;
  margin-bottom: 5px;
}
.step.active span {
    padding: 0px 10px;
    background: #0049b0;
    border-radius: 50%;
    margin-bottom: 10px  !important;
    color: white;
    border: 2px solid #cadbf2;
}
.step span {
    background: white;
    border-radius: 50%;
    margin-bottom: 10px  !important;
    height: 33px;
    width: 33px;
    color: #333;
    border: 2px solid #333;
}
.step.completed span {
    color: #0049b0;
    border: 2px solid #0049b0;
}


/* Loading Spinner Styles */
.form-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.85);
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.spinner {
  width: 60px;
  height: 60px;
  border: 5px solid #f3f3f3;
  border-top: 5px solid #0049b0;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: 20px;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.form-loader p {
  font-size: 18px;
  color: #0049b0;
  font-weight: 500;
}

/* Disabled button style */
.btn-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.order-summary-flex{
     max-height: 400px;
     overflow-y: auto;
}
div::-webkit-scrollbar {
  width: 6px;
}

div::-webkit-scrollbar-thumb {
  background-color: #cbd5e0;
  border-radius: 4px;
} 
.email-input-row button.remove-email-btn {
    background: #fff;
    color: #e53e3e;
    border: 1px solid #e53e3e;
    border-radius: 4px;
    padding: 6px 12px;
    cursor: pointer;
    font-size: 13px;
}
.email-input-row button.remove-email-btn:hover{
    background: #fff;
    color: #e53e3e;
    border: 1px solid #e53e3e;
}

@media (max-width: 575px){
 
   .form-step .dimension-group{
    flex-direction: column;
  }
}

