/* Custom styles */
:root {
    --white: #fff;
    --black: #000;
    /* --primary: #4269EB; */
    --primary: #0071BC;
    --secondary: #082D7D;
    --text: #232323;
    --text-secondary: #4D5B7C;
    --text-grey: #888;
    --border-radius-4: 4px;
    --border-radius-8: 8px;
    --border-color-light: #e6e6e6;
    --border-color-dark: #4D5B7C;
    --box-shadow-light: 0 0 4px rgba(0, 0, 0, .15);
    --box-shadow-dark: 0 0 8px rgba(0, 0, 0, .15);
    --transition: all ease 0.3s;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #F3F3F3;
}

/* GENERIC CSS STARTS HERE */

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
}

h1 {
    font-size: 32px;
    line-height: 40px;
    font-weight: 700;
    color: var(--text);
}

h2 {
    font-size: 32px;
    line-height: 40px;
    font-weight: 700;
    color: var(--text);
}

h3 {
    font-size: 24px;
    line-height: 32px;
    font-weight: 600;
    color: var(--text);
}

h4 {
    font-size: 20px;
    line-height: 28px;
    font-weight: 600;
    color: var(--text);
}

h5 {
    font-size: 18px;
    line-height: 26px;
    font-weight: 600;
    color: var(--text);
}

h6 {
    font-size: 16px;
    line-height: 24px;
    font-weight: 600;
    color: var(--text);
}

p {
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: var(--text);
}

a {
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: var(--text);
    display: inline-block;
    text-decoration: none;
    transition: var(--transition);
}

.container {
    max-width: 1244px;
}

.main-header {
    position: fixed;
    z-index: 2;
    width: 100%;
}

.fix-header-bottom {
    padding-top: 72px;
}


.navbar {
    /* background: #0071BC !important; */
    background: #0071BC;
    padding: 12px 0;
}

.navbar-brand img {
    height: 48px;
    border: 0;
    outline: none;
}

.nav-link {
    font-family: Poppins;
    font-weight: 400;
    font-size: 14px;
    color: #FAFAFA;
    padding: 8px 18px !important;
}

.nav-link:hover {
    color: rgba(255, 255, 255, 0.8) !important;
}

.btn-get-started {
    background-color: transparent;
    color: #FAFAFA;
    padding: 6px 16px;
    margin-right: 10px;
    font-weight: 600;
    font-size: 14px;
    border-radius: 8px;
    border-width: 1px;
    border: 1px solid #FAFAFA;
    transition: background-color 0.7s ease, color 0.7s ease;
}

.btn-get-started:hover {
    background-color: #FAFAFA;
    color: #0071BC;
}

.btn-login {
    background-color: #D8CF21;
    color: #1A202C;
    border: none;
    border-radius: 8px;
    padding: 8px 20px;
    font-weight: 600;
    font-size: 14px;
    transition: background-color 0.5s ease, color 0.5s ease;
    overflow: hidden;
    z-index: 1;
}


.btn-login:hover {
    background-color: #d8c95a;
}


.cart-icon {
    color: white;
    font-size: 20px;
    margin-right: 15px;
}

/* Logo text styling */
.logo-text {
    color: white;
    font-weight: bold;
    display: inline-block;
    margin-left: 8px;
    line-height: 1.1;
}

.logo-title {
    font-size: 18px;
    letter-spacing: 0.5px;
}

.logo-subtitle {
    font-size: 14px;
    letter-spacing: 1px;
}

.footer {
    background-color: #EDF2F7;
    padding: 2rem 0;
    text-align: center;
    margin-top: auto;
}

.footer-logo {
    max-width: 180px;
    margin-bottom: 1rem;
}

.footer-text {
    margin: 10px auto 18px;
    max-width: 300px;
    line-height: 16px;
    font-size: 12px;
    color: #6c757d;
}

.social-icons {
    margin-bottom: 1.5rem;
}

.social-icons a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    color: white;
    margin: 0 8px;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    transform: translateY(-3px);
}

.copyright {
    font-size: 12px;
    color: #6c757d;
}

.hero-body {
    background-color: #fff;
    border-radius: 24px;
    padding: 40px;
}

.hero-wrapper {
    padding: 56px 12px;
}

.design-creation {
    background-image: url('../images/creation-bg2.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 414px;
    width: auto;
}

.services-bg {
    background-image: url('../images/services-bg.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 175px;
    width: auto;
}

.receipt-modal-content {
    background-image: url('../images/receipt-bg.png');
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    height: fit-content;
    width: auto;
}

.services-bg a {
    background: #0071BC;
    border-radius: 10px;
    padding: 16px;
    color: #fff;
}

#drop-area {
    border: 2px dashed #ccc;
    border-radius: 8px;
    padding: 64px 64px 28px 64px;
    text-align: center;
    background: white;
    transition: all 0.3s;
}

#drop-area.highlight {
    border-color: #0066ff;
    background: #f0f8ff;
}

#viewer-container {
    width: 100%;
    height: 90%;
    border: 1px solid #ddd;
    background: white;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: var(--box-shadow-light);
    display: flex;
    justify-content: center;
    align-items: center;
}

#viewer-container svg {
    max-height: 350px !important;
}

#viewer-container canvas {
    max-height: 372px !important;
}

#status {
    padding: 10px;
    margin: 10px 0;
    border-radius: 4px;
}

.info {
    background: #e6f7ff;
    color: #0066cc;
}

.error {
    background: #fff2f0;
    color: #f5222d;
}

.success {
    background: #f6ffed;
    color: #52c41a;
}

.conversion-instructions {
    background: #fffbe6;
    border-left: 4px solid #faad14;
    padding: 15px;
    margin-top: 20px;
}

.viewer-section {
    height: 500px;
    background-color: #FAFAFA;
}

.view-file-close {
    left: 20px;
    top: 20px;
}


/* Responsive adjustments */
@media (max-width: 991px) {
    .navbar-collapse {
        background-color: #1a3989;
        padding: 15px;
        margin-top: 10px;
    }

    .buttons-container {
        margin-top: 15px;
        display: flex;
        justify-content: flex-start;
    }

    .navbar-toggler {
        border: transparent !important;
        outline: none !important;
    }

    .navbar-brand img {
        height: 32px;
    }
}

@media (max-width: 576px) {
    .footer-logo {
        max-width: 150px;
    }

    .social-icons a {
        width: 32px;
        height: 32px;
        margin: 0 5px;
    }

    .hero-body,
    #drop-area {
        padding: 16px;
    }
}

.config-container {
    max-width: 800px;
    margin: 40px auto;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 30px;
}

.progress-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    position: relative;
}

.progress-line {
    position: absolute;
    top: 12px;
    left: 80px;
    right: 80px;
    height: 2px;
    background-color: #e9ecef;
    z-index: 0;
}

.calendly-activation .progress-line {
    position: absolute;
    top: 12px;
    left: 144px;
    right: 144px;
    height: 2px;
    background-color: #e9ecef;
    z-index: 0;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
    width: 33%;
    gap: 16px;
}

.step img {
    height: 24px;
    width: 24px;
}

.step-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    color: white;
    font-size: 20px;
}

.step.active .step-circle {
    background-color: #0071BC;
}

.step.completed .step-circle {
    background-color: #0071BC;
}

.step-label {
    font-size: 14px;
    color: #6c757d;
    font-weight: 500;
    text-align: center;
}

.step.active .step-label {
    color: var(--primary);
    font-weight: 600;
}

.section-title {
    color: #0071BC;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
}

.dimension-value {
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 15px;
}

.dimension-note {
    color: #6c757d;
    font-size: 14px;
    margin-bottom: 16px;
}

.nav-tabs {
    border: none;
    padding: 4px;
    background-color: #e9ecef;
    border-radius: 4px;
}

.nav-tabs .nav-link,
.nav-tabs .nav-link:hover {
    border: none;
    color: #6c757d !important;
    padding: 10px 16px;
}

.nav-tabs .nav-link {
    width: 100%;
}

.nav-tabs .nav-link.active,
.nav-tabs .nav-link.active:hover {
    background-color: #fff;
    color: #212529 !important;
    border-radius: 4px;
}

.subsection .nav-item {
     width: 33%;
}

.subsection .custom-input-tab .nav-item {
    /* width: 33%; */
    width: 25%;
}

.remember-metric {
    display: flex;
    align-items: center;
    margin-top: 15px;
    color: #6c757d;
}

.remember-metric input {
    margin-right: 8px;
    accent-color: #D8CF21;
}

.remember-metric label {
    font-size: 12px;
    color: #838383;
}

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

.btn,
button {
    height: 40px;
    font-size: 14px !important;
    font-weight: 500 !important;
    line-height: 1;
}

.btn-next {
    background-color: #D8CF21;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    transition: all 0.2s;
    font-family: Poppins;
    font-weight: 500;
    font-size: 16px;
    text-align: center;
    color: #27303F;
    width: 64%;
}

.btn-next:hover {
    background-color: #ffc107;
}

.btn-change {
    font-weight: 500;
    background-color: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 8px;
    padding: 12px 24px;
    font-family: Poppins;
    font-weight: 500;
    font-size: 16px;
    text-align: center;
    color: #27303F;
}

.actions-row {
    display: flex;
    gap: 18px;
    align-items: center;
    margin-top: 20px;
}

.dimention-section .subsection-bottom {
    padding-bottom: 12px;
    border-bottom: 1px solid #0000001A;
}

.item-btn {
    padding: 10px 14px;
    border-radius: 8px;
    background-color: #F1F2F7;
    box-shadow: 0px 1px 2px 0px #1018280D;
    margin-bottom: 8px;
}

.item-btn-radio {
    padding: 12px 36px;
    border-radius: 8px;
    background-color: #F1F2F7;
    box-shadow: 0px 1px 2px 0px #1018280D;
    margin-bottom: 8px;
}

.select-data-tabs-ul {
    list-style: none;
    padding: 0px;
}

.select-data-tabs-ul li {
    cursor: pointer;
}

.back-levels-btn {
    background-color: #FFFFFF;
    border: 1px solid #E2E8F0;
    padding: 12px 24px;
    border-radius: 8px;
    cursor: pointer;
}

.left-img-container img {
    max-height: 500px;
}

.summary-section h2 {
    font-size: 20px;
    margin-bottom: 0;
}

.summary-section p {
    font-size: 12px;
    color: #718096;
}

.summary-row {
    border-bottom: 1px solid #eee;
}

.quantity-control button {
    width: 32px;
    height: 32px;
    font-size: 24px !important;
    line-height: 1;
    padding: 0;
    border: 0;
    color: #000;
}

.qty-input {
    font-size: 16px;
    font-weight: 500;
}

.items-row * {
    color: #718096;
    font-size: 14px;
}

.total-row * {
    font-size: 16px;
}

.items-count {
    font-size: 14px;
    font-weight: 500;
}

.view-summary,
.add-to-cart {
    width: 100%;
}

.custom-cart-modal {
    border-radius: 1rem;
    padding: 1rem;
}

.custom-cart-modal .modal-header h5 {
    font-weight: 700;
    font-size: 1.25rem;
}

.item-thumbnail {
    width: 48px;
    height: 64px;
    object-fit: cover;
    border-radius: 0.25rem;
    border: 1px solid #eee;
    background: #F8F8F8;
}


.modal-footer button {
    font-size: 14px;
    font-weight: 500;
}

.checkout-section .cart-item {
    align-items: flex-start;
}

.checkout-section .cart-img {
    width: 80px;
    height: auto;
    object-fit: contain;
}

.checkout-section .qty-input {
    width: 50px;
    height: 32px;
    padding: 0;
}

.checkout-section .btn-light {
    border: 1px solid #ccc;
}

.checkout-section .proceed-to-checkout {
    background-color: #D8CF21;
    border: none;
    transition: 0.3s;
}

.cart-price-column a {
    position: absolute;
    bottom: -60px;
}

.cart-item-title {
    max-width: 280px;
}

.list-of-items {
    max-height: 210px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #aaa transparent;
    padding-right: 12px;
}

.list-of-items::-webkit-scrollbar {
    width: 4px;
}

.list-of-items::-webkit-scrollbar-track {
    background: transparent;
}

.list-of-items::-webkit-scrollbar-thumb {
    background-color: #bbb;
    border-radius: 4px;
}

.error {
    border: 1px solid red;
}

.error-message {
    color: red;
    font-size: 12px;
    margin-top: 2px;
}

.payment-form-container {
    padding: 16px;
    border-radius: 8px;
    background-color: #f5f5f5;
    border: 1px solid var(--base-border, #DEDEDE)
}

.items-wrapper {
    border-bottom: 1px solid var(--base-border, #dedede);
    max-height: 420px;
    overflow: auto;
    padding-right: 16px;
}

.items-wrapper::-webkit-scrollbar {
    width: 4px;
}

.items-wrapper::-webkit-scrollbar-track {
    background: transparent;
}

.items-wrapper::-webkit-scrollbar-thumb {
    background-color: #bbb;
    border-radius: 4px;
}


/* checkout temp not perfect for now*/
.right-checkout .breadcrumb {
    margin-bottom: 30px;
    padding: 12px 8px;
    border-width: 1px 0px 1px 0px;
    border-style: solid;
    border-color: #EAECF0;
}


.right-checkout .breadcrumb-item {
    font-size: 14px;
    color: #666;
}

.right-checkout .breadcrumb-item.active {
    color: #0071BC;
    font-weight: 500;
}

.right-checkout .contact-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.right-checkout .contact-header h1 {
    font-size: 28px;
    font-weight: 600;
    margin: 0;
}

.right-checkout .login-link {
    color: #0d6efd;
    text-decoration: underline;
}

.right-checkout .form-control {
    border-radius: 4px;
    border: 1px solid var(--control-border, #DEDEDE);
    height: 50px;
    padding: 10px 15px;
    margin-bottom: 15px;
}

.right-checkout .form-control::placeholder {
    color: #aaa;
}

.form-check-input {
    width: 20px;
    height: 20px;
    margin-top: 0;
    background-color: #fff;
    border: 1px solid var(--control-border, #DEDEDE);
}

.form-check-input:checked {
    background-color: var(--control-accent, #1773B0);
}

.right-checkout .form-check-label {
    margin-left: 10px;
    font-size: 14px;
}

.right-checkout .dropdown-toggle::after {
    display: none;
}

.right-checkout .dropdown .form-control {
    cursor: pointer;
}

.right-checkout .form-label {
    font-size: 12px;
    color: #666;
    z-index: 1;
}

.policy-links a {
    font-family: Poppins;
    font-weight: 400;
    font-size: 14px;
    text-decoration: underline;
    text-decoration-style: solid;
    color: var(--base-accent, #197CBD);
    margin-right: 8px;
}

.self-pickup ul {
    list-style: none;
    padding: 0px;
}

.self-pickup ul li {
    font-family: Poppins;
    font-weight: 400;
    font-size: 14px;
    color: var(--control-text, #000000);
    border: 1px solid var(--control-border, #DEDEDE);
    border-radius: 8px;
    padding: 16px 12px;
    width: 100%;
    cursor: pointer;
}

/* payment sripe */

.payment-section .payment-title {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 5px;
}

.payment-section .payment-subtitle {
    color: #666;
    font-size: 14px;
    margin-bottom: 20px;
}

.payment-section .payment-section .payment-method {
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-bottom: 20px;
    background-color: #fff;
}

.payment-section .payment-method-header {
    padding: 15px;
    border: 1px solid var(--control-selected-border, #1773B0);
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.payment-section .payment-method-body {
    padding: 15px;
    border-left: 1px solid var(--base-border, #DEDEDE);
    border-right: 1px solid var(--base-border, #DEDEDE);
    background-color: #F3F3F3;
}

.payment-section .payment-method-option {
    display: flex;
    align-items: center;
}

.payment-section .payment-method-radio {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    accent-color: var(--control-accent, #1773B0);
}

.payment-section .card-icons {
    display: flex;
    gap: 8px;
}

.payment-section .card-icon {
    margin-left: 8px;
    height: 24px;
}

.payment-section .form-control {
    border-radius: 4px;
    border: 1px solid #ccc;
    height: 50px;
    padding: 10px 15px;
    margin-bottom: 15px;
}

.payment-section .form-control::placeholder {
    color: #aaa;
}

.payment-section .card-number-input {
    position: relative;
}

.payment-section .card-lock-icon {
    position: absolute;
    right: 15px;
    top: 15px;
    color: #aaa;
}

.payment-section .security-code-help {
    position: absolute;
    right: 15px;
    top: 15px;
    color: #aaa;
    cursor: pointer;
}

.payment-section .checkout-btn {
    width: 100%;
    height: 50px;
    background-color: #fbd700;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    color: #000;
    margin-top: 20px;
}

.payment-section .checkout-btn:hover {
    background-color: #e6c500;
}

.payment-section .form-check-label {
    margin-left: 10px;
    font-size: 14px;
}

.payment-section .paypal-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    border: 1px solid var(--base-border, #DEDEDE);
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;

}

.payment-section .paypal-logo {
    height: 24px;
}

.auth-bg-wrapper {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

.bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    filter: blur(4px);
}

.login-content-wrapper {
    height: calc(100vh - 128px);
}

.login-container {
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    width: 928px;
    display: flex;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.forgot-container {
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.login-form {
    padding: 40px;
    width: 44%;
}

.forgot-form {
    padding: 40px;
    width: 365px;
}

.login-form h2 {
    font-weight: 600;
    margin-bottom: 5px;
}

.login-subtitle {
    color: #838383;
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 25px;
}

.form-label {
    font-weight: 500;
    font-size: 14px;
}

.form-control {
    padding: 10px 15px;
    border-radius: 5px;
}

.btn-cancel {
    padding: 12px;
    font-weight: 500;
    width: 100%;
    color: #dc3545;
    background-color: transparent;
    background-image: none;
    border: 1px solid #dc3545;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    line-height: 1;
    border-radius: .25rem;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.login-btn {
    background-color: #ffd800;
    border: none;
    padding: 12px;
    font-weight: 500;
    width: 100%;
}

.login-btn:hover {
    background-color: #e6c200;
}

.btn-cancel:hover {
    color: #fff;
    background-color: #dc3545;
    border-color: #dc3545;
}

.login-divider {
    display: flex;
    align-items: center;
    margin: 20px 0;
    color: #6c757d;
}

.login-divider::before,
.login-divider::after {
    content: "";
    flex: 1;
    border-bottom: 1px solid #dee2e6;
}

.login-divider span {
    padding: 0 10px;
}

.social-login {
    display: flex;
    justify-content: center;
    gap: 45px;
}

.social-btn {
    border: 1px solid #dee2e6;
    background-color: white;
    border-radius: 5px;
    padding: 14px 18px;
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 48px;
}

.social-btn img {
    height: 20px;
}

.info-section {
    width: 56%;
    background-color: #1d2730;
    padding: 68px;
    color: white;
    background-image: url('../images/login-info-bg.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.info-content {
    position: relative;
    z-index: 2;
    box-shadow: 0px 12.02px 24.03px -6.01px #1018282E;
    background: #0D0D0DCC;
    padding: 32px;
    border-radius: 8px;
}

.info-title {
    font-weight: 600;
    color: #EDF2F7;
    font-size: 14px;
    margin-bottom: 15px;
}

.info-text {
    font-size: 12px;
    font-size: 12px;
    margin-bottom: 25px;
    color: #EDF2F7;
}

.service-list {
    list-style: none;
    padding: 0;
}

.service-item {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    font-size: 14px;
}

.service-icon {
    background-color: #fff;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    color: #000;
    font-size: 12px;
}

.remember-me {
    display: flex;
    align-items: center;
    font-size: 14px;
    margin-bottom: 20px;
}

.remember-checkbox {
    margin-right: 6px;
}

.forgot-link {
    text-decoration: none;
    font-size: 12px;
    margin-left: auto;
    color: #0071BC;

}

.register-link {
    color: #0071BC;
    text-decoration: none;
    font-size: 12px;
}

.style-field {
    padding-right: 30px;
}

.input-icon {
    position: absolute;
    right: 10px;
    top: 52px;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
}

.order-history {
    padding-top: 100px;
    padding-bottom: 28px;
}

.order-history .order-card-left {
    width: 80%;
    padding: 0px 24px;
}

.order-history .order-card-right {
    width: 20%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #F7FAFC;
}

.order-history .header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.order-history .header h1 {
    font-size: 24px;
    font-weight: 500;
    margin: 0;
}

.order-history .status-dropdown {
    min-width: 120px;
}

.order-history .order-card {
    background-color: white;
    border-radius: 8px;
    border: 1px solid #e9ecef;
    margin-bottom: 20px;
    overflow: hidden;
}

.order-history .order-header {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    border-bottom: 1px solid #f1f1f1;
}

.order-history .order-info {
    display: flex;
    gap: 16px;
    align-items: center;
}

.order-history .order-number {
    font-family: Poppins;
    font-weight: 500;
    font-size: 20px;
    color: #111111;
}

.order-history .order-date {
    font-family: Poppins;
    font-weight: 400;
    font-size: 16px;
    color: #4A5568;
}

.order-history .order-status {
    text-transform: capitalize;
    display: inline-block;
    color: #fff;
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
}

.order-history .order-status-success {
    background-color: #16AF3C;
}

.order-history .order-status-warning {
    background-color: #ffd800;
}

.order-history .order-status-danger {
    background-color: #de3545;
}

.order-history .order-type {
    display: inline-block;
    color: #0071BC;
    padding: 3px 15px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    background: transparent;
    border: 2px solid #0071BC;
}

}

.order-history .order-price {
    font-family: Poppins;
    font-weight: 600;
    font-size: 20px;
    color: #111111;
}

.order-history .order-receipt {
    text-align: right;
    padding-right: 20px;
    margin-top: 5px;
}

.order-history .receipt-link {
    color: #2E56E9;
    font-size: 16px;
    font-weight: 400;
    text-decoration: underline;
}

.order-history .order-content {
    display: flex;
    justify-content: space-between;
    padding: 20px;
}

.order-history .order-items {
    display: flex;
    gap: 10px;
}

.order-history .item-count {
    font-weight: 500;
    font-size: 14px;
    color: #27303F;

}

.order-history .item-image {
    width: 112px;
    height: 112px;
    object-fit: contain;
    background-color: #f8f9fa;
    border-radius: 4px;
    padding: 5px;
}

.order-history .order-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-width: 180px;
}

.order-history .btn-reorder {
    background-color: transparent;
    border: 1px solid #dee2e6;
    color: #212529;
    border-radius: 4px;
    padding: 8px 15px;
    text-align: center;
    font-weight: 500;
}

.order-history .btn-details {
    background-color: #ffc107;
    border: none;
    color: #212529;
    border-radius: 4px;
    padding: 8px 15px;
    text-align: center;
    font-weight: 500;
}

.oder-detail-modal .modal-dialog,
.shipping-address-modal .modal-dialog {
    max-width: 980px;
}

.receipt-modal .modal-dialog {
    max-width: 864px;
}

.receipt-modal .modal-header {
    border: 0 !important;
}

.oder-detail-modal .btn-close {
    position: absolute;
    right: 20px;
    top: 20px;
}

.oder-detail-modal .modal-card {
    border-bottom: 1px solid #dee2e6;
}

.oder-detail-modal .modal-card-body,
.oder-detail-modal .modal-card-right {
    max-height: 112px;
}


.oder-detail-modal .modal-body {
    max-height: 600px;
    overflow-y: auto;
}


.oder-detail-modal .modal-body::-webkit-scrollbar {
    width: 4px;
}

.oder-detail-modal .modal-body::-webkit-scrollbar-track {
    background: transparent;
}

.oder-detail-modal .modal-body::-webkit-scrollbar-thumb {
    background-color: #bbb;
    border-radius: 4px;
}

.settings-main-wrapper .settings-body {
    border-top: 1px solid #EAECF0;
}

.settings-main-wrapper .nav {
    width: 16%;
}

.settings-main-wrapper .nav-pills .nav-link.active {
    border-radius: 6px;
    background: #D8CF21 !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    color: #27303F !important;
}

.settings-main-wrapper .nav-link {
    /* font-family: Inter !important; */
    font-weight: 600 !important;
    font-size: 14px !important;
    color: #667085 !important;
    text-align: left;
    padding-left: 12px !important;
}


.settings-main-wrapper .profile-container {
    max-width: 100%;
    background: #fff;
    border-radius: 8px;
}

.settings-main-wrapper .profile-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 12px;
    margin-bottom: 20px;
    border-bottom: 1px solid #EAECF0;

}

.settings-main-wrapper .profile-title {
    font-size: 24px;
    font-weight: 600;
    margin: 0;
    line-height: 32px;
}

.settings-main-wrapper .profile-subtitle {
    color: #6c757d;
    font-size: 14px;
    margin: 0;
}

.settings-main-wrapper .edit-btn {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    padding: 8px 15px;
    border-radius: 5px;
    color: #495057;
    text-decoration: none;
    font-size: 14px;
}

.settings-main-wrapper .edit-btn:hover {
    background: #e9ecef;
    color: #495057;
    text-decoration: none;
}

.settings-main-wrapper .form-label {
    font-weight: 500;
    color: #495057;
    margin-bottom: 8px;
}

.settings-main-wrapper .profile-field,
.shipping-address-modal .profile-field {
    border-bottom: 1px solid #EAECF0;
    gap: 150px;
}

.shipping-address-modal .edit-settings-email-input {
    border-top-left-radius: 4px !important;
    border-bottom-left-radius: 4px !important;
}

.shipping-address-modal .login-btn,
.update-password .login-btn,
.update-password-form .login-btn {
    width: fit-content;
}

.update-password-form input {
    border: 1px solid #D0D5DD !important;
    box-shadow: 0px 1px 2px 0px #1018280D;
    padding-left: 40px !important;
}

.update-password-form img {
    position: absolute;
    top: 10px;
    left: 20px;
}

.update-password-form .confirm-pass img {
    left: 8px;
}

.settings-main-wrapper .field-icon {
    color: #6c757d;
    margin-right: 10px;
}

.settings-main-wrapper .field-value {
    color: #495057;
    font-size: 16px;
}

.settings-main-wrapper .form-control {
    border: 1px solid #ced4da;
    padding: 10px 15px;
    font-size: 16px;
    border-top-left-radius: 4px !important;
    border-bottom-left-radius: 4px !important;
}

.edit-settings-email {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 1;
}

.edit-settings-email-input {
    padding-left: 40px !important;
}

.settings-main-wrapper .form-control:focus {
    border-color: #86b7fe;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

.settings-main-wrapper .phone-input {
    display: flex;
    align-items: center;
    width: -webkit-fill-available;
}

.settings-main-wrapper .country-flag {
    background: #f8f9fa;
    border: 1px solid #ced4da;
    border-right: none;
    padding: 10px 15px;
    border-radius: 0.375rem 0 0 0.375rem;
    display: flex;
    align-items: center;
    height: 46px;
    white-space: nowrap;
}

.settings-main-wrapper .phone-number {
    border-radius: 0 0.375rem 0.375rem 0;
}

.settings-main-wrapper .save-btn {
    background: #ffc107;
    border: none;
    color: #000;
    padding: 10px 25px;
    border-radius: 5px;
    font-weight: 500;
    float: right;
}

.settings-main-wrapper .save-btn:hover {
    background: #ffcd39;
}

.settings-main-wrapper .readonly-view {
    display: block;
}

.settings-main-wrapper .edit-view {
    display: none;
}

.settings-main-wrapper .name-fields,
.shipping-address-modal .name-fields {
    display: flex;
    gap: 15px;
    width: -webkit-fill-available;
}

.settings-main-wrapper .name-fields .form-control {
    flex: 1;
}

.flag-icon {
    width: 20px;
    height: 15px;
    object-fit: cover;
    margin-right: 8px;
    vertical-align: middle;
}

.pay-method-card-info {
    /* font-family: Inter; */
    font-weight: 400;
    font-size: 14px;
    color: #152C67;
}

.pay-method-card-remove {
    /* font-family: Inter; */
    font-weight: 600;
    font-size: 14px;
    color: #1A3884;
    margin-left: 12px;
}

.pay-method-card {
    display: flex;
    justify-content: space-between;
    border: 1px solid #EAECF0;
    border-radius: 12px;
    padding: 16px;
    cursor: pointer;
}

.pay-method-card.active {
    border: 2px solid #0071BC;
}

.pay-method-card.active .active-inactive-circle .inactive-circle {
    display: none;
}

.active-circle {
    display: none;
}

.pay-method-card.active .active-inactive-circle .active-circle {
    display: block;
}


.card-details-wrapper {
    border-bottom: 1px solid #EAECF0;
}

.shipping-address {
    border: 0;
    background-color: transparent;
    font-weight: 600;
    font-size: 14px;
    color: #475467;
}

.empty-pages {
    height: calc(100vh - 490px);

}

.pro-fields {
    display: flex;
    justify-content: space-between;
    gap: 32px;
}

.pro-fields label {
    white-space: nowrap;
}

.pro-fields input {
    width: 640px;
    border: 1px solid #D0D5DD !important;
    box-shadow: 0px 1px 2px 0px #1018280D;
}

.pro-fields-half input {
    width: 305px;
    border: 1px solid #D0D5DD !important;
    box-shadow: 0px 1px 2px 0px #1018280D;
}

.Measuring {
    display: flex;
    gap: 32px;
    margin-bottom: 12px;
    padding-bottom: 36px;
    border-bottom: 1px solid #EAECF0;
}

.save-settings .login-btn {
    width: fit-content;
}

.Measuring:last-child {
    border: 0;
    padding-top: 32px;
}

.Measuring .nav-tabs {
    width: 100%;
}

.Measuring .nav-tabs li {
    width: 33%;
}

.Measuring:first-child .nav-tabs li {
    width: 49%;
}


/* services */
.services-header h6 {
    font-weight: 600;
    font-size: 16px;
    color: #1A202C;
}

.services-header h1 {
    font-weight: 600;
    font-size: 48px;
    color: #0071BC;
    margin-bottom: 12px;
}

.services-header p {
    font-weight: 400;
    font-size: 20px;
    color: #4A5568;
}

.service-card {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 30px;
    border-radius: 24px;
    background-color: #FFFFFF;
    box-shadow: 0px 4px 6.9px 0px #00000012;
    height: 368px;
}

.service-card h4 {
    color: #1A202C;
    font-size: 24px;
    font-weight: 600;
}

.service-card h6 {
    color: #1A202C;
    font-size: 18px;
    font-weight: 500;
}

.service-card p {
    color: #1A202C;
    font-size: 14px;
    font-weight: 400;
    max-width: 388px;
}

.service-card a {
    text-decoration: underline;
}

.service-card a,
.service-card a i {
    font-size: 16px;
    font-weight: 600;
    color: #0071BC;
}


.service-card-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.consultation-order-meeting-link-copy-btn {
    cursor: pointer;
    transition: filter 0.2s ease-in-out;
}

.consultation-order-meeting-link-copy-btn:hover {
    filter: brightness(1.2);
}

.consultation-order-meeting-link-copy-btn:active {
    transform: scale(0.9);
    filter: brightness(1.1);
}

.service-card img {
    width: 64px;
    height: 64px;
}

.deliver-payment-method {
    display: flex;
    justify-content: space-between;
}

.consultancy-detail-attendee-host {
    display: flex;
    justify-content: flex-start;
    gap: 6rem;
    padding-left: 20px;
}

.receipt-border {
    border-bottom: 1px solid #D9D9D9;
}

.receipt-modal .modal-body {
    height: 800px;
}

.payment-section .pay-tabs {
    border-bottom: 1px solid #D9D9D9;
    margin-bottom: 16px;
}

.calendly-form-section label {
    color: #4A5568;
    font-size: 12px;
    font-weight: 500;
}

.calendly-form-section ::placeholder {
    color: #718096;
    font-size: 14px;
    font-weight: 400;
}

.calendly-form-section input {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    box-shadow: 0px 1px 2px 0px #1018280D;
    border-radius: 8px;
}

.calendly-form-section .upload-btn {
    padding: 0;
    border: 0;
    background: none;
    height: 0px;
    margin-top: 5px;
    text-decoration: underline;
    font-size: 12px;
    font-weight: 400;
    color: #4870FF;
}

.calendly-form-section span {
    color: #718096;
    font-size: 12px;
    font-weight: 400;
}

.calendly-date-time-section .calendly-date-time-wrapper {
    background: #FFFFFF;
    border: 1px solid #1A1A1A1A;
    box-shadow: 0px 1px 8px 0px #00000014;
    border-radius: 8px;
    padding: 24px;
    /*max-height: 590px;*/
}

.calendly-wrapper .items-wrapper {
    padding: 24px;
    border: 1px solid #CBD5E0;
    border-radius: 12px;
    max-height: none;
}

.items-wrapper-text {
    color: #707072;
    font-size: 12px;
    font-weight: 400;
    display: inline-block;
}

.items-wrapper .read-more-link:hover {
    text-decoration: underline !important;
}

.calendly-checkout-section .checkbox-wrapper {
    border: 1px solid var(--control-border, #DEDEDE);
    padding: 14px;
    border-radius: 4px;
}

.calendly-checkout-section .checkbox-wrapper label {
    color: var(--control-text, #000000);
    font-size: 14px;
    font-weight: 400;
}

.social-login span {
    margin-left: 8px;
    font-weight: 500;
    font-size: 14px;
    color: #27303F;
}

.consultation-tab {
    border-radius: 12px;
    background: #F9F9FB;
    padding: 24px;
}

.consultation-attachments .consultation-attachment-wrapper img {
    height: 118px;
    width: 118px;
    object-fit: cover;
}

.consultation-attachments {
    flex-wrap: wrap;
}

.consultation-pro-img-wrapper img {
    height: 110px;
    width: 110px;
    object-fit: cover;
    border-radius: 50%;
}

.consultation-design .order-info {
    padding-bottom: 12px;
    border-bottom: 1px solid #E2E8F0;
}

.consultation-desc {
    font-weight: 500;
    font-size: 12px;
    height: 200px;
}

.consultation-popUp h6 {
    color: #0071BC;
    font-size: 14px;
    font-weight: 500;
}

.meeting-link a {
    color: var(--Link-link-primary, #0F62FE);
    font-size: 16px;
    font-weight: 400;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

    .angle-icon.transition {
        transition: transform 0.3s ease;
    }

    .angle-icon.rotate {
        transform: rotate(180deg);
    }

    #custom-scale-panel {
        margin-bottom: 10px;
    }

    #custom-scale-panel .form-label {
        font-weight: 500;
        font-size: 14px;
    }

    .scaling-inputs input{
        background: #CBD5E04D;
        border: 1px solid #0000000A;
        border-radius: 8px;
    }

    .pro-head h2{
        color: #FAFAFA;
        font-size: 16px;
        font-weight: 600;
        line-height: 22px;
    }

    .pro-head h6{
        color: #E2E8F0;
        font-size: 12px;
        font-weight: 500;
        line-height: 16px;
    }

    .pro-head .name-capital h4{
        color: #000000;
        font-size: 19px;
        font-weight: 500;
        line-height: 16px;
        margin: 0;
    }

    .pro-head .drop-down-icon i{
        color: #fff;
    }

    .pro-head .name-capital{
        background: #B9CE3D;
        height: 38px;
        width: 38px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
    }

    .pro-head #profile-dropdown{
        border-radius: var(--border-radius-4);
        border: 1px solid var(--border-color-light);
        width: 160px;
        background-color: var(--white);
    }

    .pro-head #profile-dropdown ul li:first-child{
        border-bottom: 1px solid #B9CE3D !important;
    }

    .pro-head #profile-dropdown ul li a{
        padding: 12px 16px;
        font-size: 14px;
        font-weight: 400 !important;
    }

    .pro-head #profile-dropdown ul li button{
        color: var(--text);
        padding: 12px 16px !important;
        font-size: 14px !important;
        font-weight: 400 !important;
        text-decoration: none;
    }


/* CNC responsive styles here */
@media screen and (max-width: 767px) {

    .login-content-wrapper {
        height: calc(100vh - 148px);
    }

    .info-section,
    .bg-video {
        display: none;
    }

    .login-container,
    .forgot-container {
        box-shadow: none;
        border-radius: 0px;
    }

    .login-form {
        width: 100%;
    }

    .auth-temps-header {
        background-color: var(--primary);
    }

    .auth-bg-wrapper {
        background-color: #fff;
    }

    .auth-footer {
        padding: 12px;
    }

    .copyright {
        color: #000 !important;
        font-size: 9px;
    }

    .forgot-form {
        padding: 0px;
    }

    .order-history .order-card-right,
    .order-history .order-card-left {
        width: 100%;
    }

    .order-history .order-number,
    .order-history .order-price {
        font-size: 12px;
    }

    .order-history .order-date,
    .order-history .item-count,
    .order-history .order-status,
    .order-history .receipt-link {
        font-size: 10px;
    }

    .order-history .order-actions {
        padding: 12px;
    }

    .order-history .order-actions {
        flex-direction: row;
        gap: 24px;
    }

    .order-history .btn-reorder {
        white-space: nowrap;
    }

    .order-history .order-header {
        flex-direction: column;
        padding: 16px 0px;
    }

    .order-history .order-total {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .order-history .order-items {
        max-width: 340px;
        overflow-x: auto;
        padding: 12px 0px;
    }

    .order-history .order-content {
        padding: 0px;
    }

    .order-history .order-info {
        gap: 8px;
    }

    .order-history .item-image {
        width: 80px;
        height: 80px;
    }

    .modal.oder-detail-modal .modal-dialog {
        margin: 0;
        position: fixed;
        bottom: 0;
        width: 100%;
        max-width: 100%;
        transform: translateY(100%);
        transition: transform 0.8s ease-out;
    }

    .modal.oder-detail-modal.show .modal-dialog {
        transform: translateY(0);
    }

    .modal.oder-detail-modal .modal-content {
        border-radius: 1rem 1rem 0 0;
    }
}

/* .loader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    backdrop-filter: blur(8px);
    background-color: rgba(29, 62, 145, 0.4);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.loader {
    width: 60px;
    height: 60px;
    border: 6px solid #fff;
    border-top: 6px solid #0071BC;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }

} */


.loader-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  backdrop-filter: blur(8px);
  background-color: rgba(29, 62, 145, 0.4);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.loader {
  width: 150px;
  height: 150px;
}

