@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Text:ital@0;1&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --clr-black: #000;
    --clr-stone: #1A1A1A;
    --clr-lightgrey: #737373;
    --btn-hvr-clr: #F0F0F0;
}

* {
    font-family: "Inter", sans-serif;
    color: var(--clr-stone);
}


body {
    position: relative;
    background: #fff;
}

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

ul {
    margin-bottom: 0px;
    padding: 0px;
}

li {
    list-style-type: none;
}

a {
    text-decoration: none;
    color: white;
    transition: color .3s ease;
}

a>* {
    transition: .3s ease;
}

button,
textarea,
input {
    border: 0;
    outline: none;
    background: transparent;
}

button {
    transition: .3s ease;
}

button>* {
    transition: .3s ease;
}

.clr-lightgrey {
    color: var(--clr-lightgrey);
}

.flex {
    display: flex;
}

.item-center {
    align-items: center;
}

.justify-center {
    justify-content: center;
}


.flexbox {
    display: flex;
    justify-content: center;
    align-items: center;
}

img {
    width: auto;
}

.img-fill {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.black-btn {
    background: var(--clr-black);
    color: #fff;
}

.black-btn:hover {
    background: #444;
}

.blue-btn {
    background: #2439A2;
    color: #fff;
}

.blue-btn:hover {
    background: #213078;
}

.modal-backdrop.show {
    background: #000000BF;
    backdrop-filter: blur(8px);
    opacity: 1;
}

button {
    border-radius: 12px;
}

/* --- Auth Modal --- */
.auth-modal .modal-dialog {
    max-width: 446px;
}

.auth-modal .modal-content {
    border-radius: 24px;
    border: 0;
}

.auth-modal .modal-body {
    padding: 24px 25px 19px;
}

.auth-modal .greet-box img {
    max-width: 46px;
}

.auth-modal h2 {
    font-size: 24px;
    font-weight: 600;
    line-height: 32px;
    margin-block: 16px;
}

.auth-modal p {
    color: var(--clr-lightgrey);
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 24px;
}

.google-btn {
    min-height: 44px;
    font-weight: 500;
    gap: 8px;
    font-size: 14px;
}

/* --- Tab Sliding switch --- */
.cst-tab-switch-container {
    position: relative;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    width: 100%;
    height: 40px;
    background-color: #F5F5F5;
    border-radius: 12px;
    padding: 4px;
    overflow: hidden;
}

.cst-tab-switch-indicator {
    content: "";
    position: absolute;
    top: 4px;
    left: 4px;
    height: calc(100% - 8px);
    width: calc(50% - 8px);
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0px 1px 2px 0px #0000000D;
    transition: all 0.25s ease-out;
    z-index: 9;
}

.cst-tab-switch {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
}

.cst-tab-switch-label {
    flex: 1;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 999;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.25s;
    color: var(--clr-lightgrey);
    cursor: pointer;
}

.cst-tab-switch--1:checked~.cst-tab-switch-label[for="cst-tab1"],
.cst-tab-switch--2:checked~.cst-tab-switch-label[for="cst-tab2"] {
    opacity: 1;
    color: var(--clr-stone);
}

.cst-tab-switch--1:checked~.cst-tab-switch-indicator {
    left: 4px;
}

.cst-tab-switch--2:checked~.cst-tab-switch-indicator {
    left: calc(50% + 4px);
}

/* --- Tab Sliding switch --- */
.frm-divider {
    position: relative;
}

.frm-divider::before {
    content: '';
    width: 100%;
    height: 1px;
    top: 50%;
    position: absolute;
    left: 0;
    transform: translateY(-50%);
    background: #E6E6E6;
}

.frm-divider p {
    margin-block: 16px;
    line-height: 16px;
    width: fit-content;
    position: relative;
    background: #fff;
    padding-inline: 7px;
}

.auth-form {
    margin-top: 16px;
}

.auth-form .submit-btn {
    min-height: 56px;
    font-size: 20px;
}

.input-block {
    margin-bottom: 16px;
}

.input-block label {
    font-size: 14px;
    line-height: 14px;
    margin-bottom: 12px;
    font-weight: 500;
}

.input-block .input-field {
    border: 1px solid #E6E6E6;
    border-radius: 12px;
    min-height: 40px;
    padding: 0 13px;
    font-size: 14px;
}

.sidemenu {
    border-right: 1px solid #E6E6E6;
    width: 256px;
    height: 100dvh;
    position: fixed;
    background: #fff;
    left: 0;
    top: 0;
    overflow: hidden auto;
    transition: .3s ease;
    max-height: 100dvh;
    scrollbar-width: thin;
    z-index: 8;
}

.sidemenu nav {
    display: flex;
    flex-direction: column;
    height: 100%;
    white-space: nowrap;
    width: 256px;
}

.ac-box {
    position: sticky;
    bottom: 0;
    background: #fff;
}

.nav-head {
    display: flex;
    align-items: center;
    padding: 12px 16px 12px 16px;
    transition: padding .2s ease;
    position: sticky;
    top: 0;
    background: #fff;
    z-index: 1;
}


.logox {
    margin-right: 4px;
}

.logox img {
    max-width: 23px;
}

.site-name {
    font-weight: 600;
    font-size: 16px;
    line-height: 19px;
    flex-grow: 1;
    transition: opacity .3s ease;
}


.light-hvrd-btn:hover {
    background: var(--btn-hvr-clr);
}

.nav-sq-btn {
    border-radius: 5px;
    --sz: 36px;
    width: var(--sz);
    min-width: var(--sz);
    height: var(--sz);
}

.nav-sq-btn:hover {
    background: var(--btn-hvr-clr);
}

.menu-closer {
    --sz: 36px;
    width: var(--sz);
    min-width: var(--sz);
    height: var(--sz);
}

.other-nav-action-col {
    margin-top: auto;
    padding: 0 12px 8px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.other-nav-action-col button {
    min-height: 36px;
    gap: 12px;
    border-radius: 6px;
    padding-inline: 12px;
    font-size: 14px;
}

.other-nav-action-col .incx {
    --sz: 20px;
    max-width: var(--sz);
    height: var(--sz);
}

.other-nav-action-col button:hover {
    background: var(--btn-hvr-clr);
}

.ac-box .inner {
    padding: 6px 12px 12px;
    display: flex;
}

.ac-box .user-menu {
    align-self: center;
}

.ac-box .user-menu button {
    padding: 7px;
    border-radius: 3px;
}

.ac-box .pf {
    border-radius: 50%;
    overflow: hidden;
    --sz: 36px;
    width: var(--sz);
    min-width: var(--sz);
    height: var(--sz);
    /* margin-right: 8px; */
    background: #c2175b;
    color: #fff;
}

.uinfo {
    flex-grow: 1;
    max-width: calc(100% - 71px);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.uinfo h5 {
    font-size: 14px;
    line-height: 20px;
}

.uinfo p {
    color: #525252;
    font-size: 12px;
    line-height: 16px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cmn-dd .dropdown-menu {
    padding: 3px;
    border-color: #ededed;
    box-shadow: 0 0 10px #ededed;
    border-radius: 10px;
    position: fixed !important;
}

.cmn-dd .dropdown-menu li {
    min-height: 32px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    position: relative;
    font-size: 14px;
    cursor: pointer;
    padding-inline: 10px;
    gap: 12px;
}

.cmn-dd.language-dd li {
    padding-left: 32px;
}

.cmn-dd .dropdown-menu li:hover {
    background-color: var(--btn-hvr-clr);
}

.cmn-dd.language-dd li.active::before {
    position: absolute;
    content: '';
    background: url("/images/tick-icon.svg") no-repeat center / contain;
    width: 14px;
    height: 14px;
    left: 9px;
    background-size: 12px;
    top: 10px;
    filter: brightness(0) saturate(100%) invert(20%) sepia(24%) saturate(5554%) hue-rotate(215deg) brightness(98%) contrast(93%);
}

.user-menu .dropdown-menu {
    min-width: 190px;
}

.chat-type-area .input-block {
    display: flex;
    margin-bottom: 0;
    padding-bottom: 10px;
}

.chat-nav {
    border-radius: 6px;
    padding: 5px 7px;
}

.chat-nav.active {
    background-color: var(--btn-hvr-clr);
}

.chat-type-area textarea {
    height: 40px;
    padding-left: 11px;
    scrollbar-width: none;
}
.chat-type-area textarea::-webkit-scrollbar{
    height: 0;width: 0;display: none;
}

.chat-type-area textarea::placeholder {
    color: #171717;
}


/* === Chat Box=== */

.chat-box-section {
    --spacer: 256px;
    margin-left: var(--spacer);
    width: calc(100% - var(--spacer));
    transition: margin-left .3s ease, width .3s ease;
    overflow: hidden;
}

.chat-box-section .inner-area {
    padding: 73px 24px 24px;
    height: 100dvh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.chat-box-section.active {
    --spacer: 52px;
}

.logox .menu-closer {
    opacity: 0;
    pointer-events: none;
    transition: .3s ease;
}

.chatlogin-btn {
    min-height: 40px;
    min-width: 67px;
    border-radius: 30px;
}

.start-new-chat-col {
    font-size: 14px;
    padding-inline: 8px 16px;
    transition: .3s ease;
}

.start-new-chat-col button {
    border-radius: 8px;
    border: 1px solid #E6E6E6;
    min-height: 36px;
    width: 100%;
    gap: 12px;
    padding: 0 12px;
}

.start-new-chat-col button i {
    font-size: 17px;
}


.start-new-chat-col button:hover {
    background: #F0F0F0;
}

.chat-histroy-col {
    margin-top: 24px;
    padding-inline: 8px 16px;
    transition: opacity 0.3s ease;
}

.chat-histroy-col .title {
    font-size: 14px;
    line-height: 20px;
}

.empty-chat {
    font-size: 13px;
    line-height: 20px;
    padding-block: 8px;
}

.plan-modal .modal-dialog {
    max-width: 1008px;
}

.plan-modal .modal-body {
    display: flex;padding: 0;
}

.modal-content {
    border-radius: 24px;
}
.review-slider-box{margin-top: auto;}

.plan-box {
    width:calc(100% - 431px);
    /* padding: 25px; */
    padding:25px 0;
    /* border: 1px solid #f0f0f0; */
    background: #f4f4f4;
    border-radius: 16px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;

}

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

.table-tr {
    display: flex;
    align-items: center;
}

.plan-details .table-tr .table-th:first-of-type,
.plan-details .table-tr .table-td:first-of-type {
    flex-grow: 1;
}

.plan-details .table-tr .table-th:not(:first-of-type),
.plan-details .table-tr .table-td:not(:first-of-type) {
    width: 65px;
    min-width: 65px;
}

.plan-details .table-head {
    padding-block: 8px 20px;
    margin-bottom: 12px;
    border-bottom: 1px solid #E6E6E6;
}

.plan-details .table-body .table-tr {
    padding-bottom: 12px;
    margin-bottom: 12px;
    border-bottom: 1px solid #E6E6E6;
}

.plan-details .table-body .table-td:first-of-type {
    display: flex;
    gap: 12px;
    padding-right: 9px;
}

.plan-details .incx {
    --sz: 24px;
    min-width: var(--sz);
    height: var(--sz);
}

.pinfo strong {
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 4px;
}

.pinfo small {
    color: #525252;
    line-height: 20px;
    font-size: 14px;
}

.mdl-closer {
    right: 20px;
    top: 20px;
    z-index: 1;
    width: 20px;
    height: 20px;
    border-radius: 4px;
}

.plan-accept-box {
    width: 431pxpx;
    padding: 40px 30px;
}
.plan-selectors {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.plan-accept-box .plan-header h4 {
    font-size: 22px;
    line-height: 31px;
}

.plan-accept-box .text-gradient {
    background: linear-gradient(90deg, #AE54EF 16.35%, #E9489C 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.plan-accept-box .plan-header img {
    transform: translateY(-4px);
}

.plan-accept-box .plan-header p {
    color: #525252;
    font-size: 13px;
    line-height: 17px;
    margin-block: 4px 24px;
}

.cus-radio {
    display: flex;
    gap: 10px;
    justify-content: center;
    position: relative;
    align-items: center;
    color: white;
}

.cus-radio input[type="radio"] {
    position: absolute;
    opacity: 0;
}

.cus-radio .radio {
    position: relative;
    display: inline-block;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 2px solid #c7c7c7;
    transform: translateZ(-25px);
    transition: all 0.3s ease-in-out;
}

.cus-radio .radio::before {
    position: absolute;
    content: '';
    width: 10px;
    height: 10px;
    top: 5px;
    left: 5px;
    border-radius: 50%;
    background-color: #2439A2;
    opacity: 0;
    transition: all 0.3s ease-in-out;
}

.cus-radio input[type="radio"]:checked+.radio {
    border-color: #2439A2;
    transform: translateZ(0px);
    background-color: #fff;
}

.cus-radio input[type="radio"]:checked+.radio::before {
    opacity: 1;
}

.plan-option label {
    border-radius: 16px;
    border: 1px solid #E6E6E6;
    padding: 9px 17px;
    transition: border .3s ease;
    width: 100%;
    gap: 12px;
    position: relative;
    cursor: pointer;
}

.plan-option label.active,
.plan-option label:hover,
.plan-option label:hover .cus-radio .radio {
    border-color: #2439A2;
}
.plan-option label.active{
    background: #f2f5ff;
}
.ofr-badge {
    position: absolute;
    right: 14px;
    top: -8px;
    font-size: 10px;
    font-weight: 600;
    background: #fff;
    padding: 0 7px;
    border-radius: 10px;
    border: 1px solid transparent;
}

.quarterly-plan .ofr-badge{
    background: #fff4de;
    border-color: #ffac4c;
}
.yealy-plan .ofr-badge{
    background: #ffdede;
    border-color: #ff4c4c;
}

.plan-name {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.plan-name:not(.price){
    font-size: 15px;
}

.plan-name .price {
    font-size: 13px;
    color: #525252;
    margin-top: 2px;
    line-height: normal;
}

.plan-modal .blue-btn {
    min-height: 48px;
    font-size: 16px;
    margin-top: 24px;
}

.pay-secure p {
    font-size: 11px;
    line-height: 16px;
    margin-block: 17px 7px;
    color: #009100;
    gap: 8px;
    width: fit-content;
    background: #e3ffe3;
    margin-inline: auto;
    padding: 7px 10px;
    border-radius: 5px;
    font-weight: 600;
}

.pay-secure p img{
    filter: brightness(0) saturate(100%) invert(29%) sepia(32%) saturate(5314%) hue-rotate(108deg) brightness(97%) contrast(102%);
}
.payment-icons {
    gap: 12px;
}

.payment-modal .modal-dialog {
    max-width: 1008px;
}

.payment-modal .modal-content {
    overflow: hidden;
    border: 0;
    background: transparent;
}

.payment-modal .modal-body {
    padding: 0;
}

.payment-art-section {
    min-width: 537px;
    align-self: stretch;
}

.payment-art-section .inner-area {
    height: 100%;
    padding: 20px 16px 12px 16px;
    background: white;
    /* box-shadow: 8px 0 24px rgba(0,0,0,0.08); */
    min-height: 544px;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;

}

.payment-art-section .inner-area::after {
    content: '';
    position: absolute;
    background: url("/images/ai-modal-image.jpg") no-repeat center / contain;
    width: 537px;
    height: 418px;
    mix-blend-mode: luminosity;
    right: 0;
    bottom: 0;
    opacity: 30%;
    display: none;
}

.payment-art-section .logo {
    margin-bottom: 30px;
}

.payment-art-section * {
    color: #000;
}
.plan-dt{
    position: relative;
    z-index: 1;
}

.plan-dt .name {
    font-size: 20px;
    line-height: 21px;
}

.plan-dt .plan-prc {
    display: flex;
    gap: 10px;
    align-items: center;
    min-height: 47px;
}

.plan-prc h3 {
    font-size: 36px;
}

.plan-prc span {
    line-height: normal;
    font-size: 14px;
}

.payment-made-box {
    flex-grow: 1;
    align-self: stretch;
    background: #fff;
    padding: 41px 24px 22px 47px;
}

.payment-made-box .title {
    font-size: 16px;
    margin-bottom: 16px;
    display: block;
}

.payment-made-box .blue-btn {
    font-size: 20px;
    min-height: 55px;
    margin-block: 18px 0px;
}

.payment-made-box .xtra {
    text-align: center;
    font-size: 13px;
    color: #1A1A1AB2;
    line-height: 17px;
}

.stripe-ft {
    margin-block: 16px;
    gap: 15px;
}

.stripe-ft * {
    font-size: 12px;
    color: #1A1A1A80;
}

.stripe-ft .divder {
    width: 1px;
    height: 16px;
    background: #1A1A1A33;
}

.stripe-ft a:hover {
    color: var(--clr-black);
}

.payment-made-box form label {
    color: #1A1A1AB2;
    font-size: 13px;
    margin-bottom: 5px;
    line-height: 17px;
    font-weight: 600;
    display: block;
}

.payment-made-box form select,
.payment-made-box form input {
    box-shadow: 0px 1px 1.5px 0px #0000000D,
        0px 2px 4px 0px #00000012,
        0px 0px 0px 1px #E0E0E0;
    min-height: 36px;
    padding: 0 12px;
    width: 100%;
    border-radius: 12px;
    background: transparent;
    font-size: 14px;
}

.payment-made-box form select {
    border: 0;
    outline: none;
}

.payment-made-box form .form-group:not(:last-of-type) {
    margin-bottom: 16px;
}

.card-details {
    display: flex;
    flex-wrap: wrap;
    border-radius: 12px;
    box-shadow: 0px 1px 1.5px 0px #0000000D,
        0px 2px 4px 0px #00000012,
        0px 0px 0px 1px #E0E0E0;
}

form .card-details input {
    box-shadow: none;
    border: 0;
    border-radius: 0;
}

form input.expiry-fld {
    border-top: 1px solid #ddd;
    border-right: 1px solid #ddd;
}

form input.cvc-fld {
    border-top: 1px solid #ddd;
}

.select-card-country {
    position: relative;
}

.select-card-country::before {
    position: absolute;
    content: '';
    width: 20px;
    height: 20px;
    background: #fff;
    right: 2px;
    top: 34px;
}

.select-card-country i {
    position: absolute;
    width: 20px;
    height: 20px;
    right: 2px;
    top: 34px;
    font-size: 13px;
}


/* ==== Loader ==== */

.loader-box {
    inset: 0;
    background: #000000BF;
    backdrop-filter: blur(8px);
    display: none;
}

.loader-box.active {
    display: block;
}

.loader {
    width: 240px;
    height: 240px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 24px;
    box-shadow: 0px 1px 2px 0px #0000000D;
    backdrop-filter: blur(34px);
}

.ld-logo {
    width: 100%;
    height: 100%;
    overflow: visible;
}

/* Faint static base path */
.track {
    /* stroke: #999; */
    stroke-width: 3.5;
    fill: none;
}

/* Moving blue stroke */
.car {
    stroke: #000;
    stroke-linecap: round;
    stroke-width: 3.5;
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: clockwiseDrawErase 5s linear infinite, fillIn 5s ease-in infinite 0.5s;
    /* filter: drop-shadow(0 0 8px rgba(51, 172, 241, 0.6)); */
}

@keyframes clockwiseDrawErase {
    0% {
        stroke-dashoffset: 1000;
    }

    40% {
        stroke-dashoffset: 0;
    }

    60% {
        stroke-dashoffset: 0;
    }

    100% {
        stroke-dashoffset: -1000;
    }
}

@keyframes fillIn {
    0% {
        fill: transparent;
    }

    40% {
        fill: #000;
    }

    60% {
        fill: #000;
    }

    100% {
        fill: transparent;
    }

}

.canva-head {
    position: absolute;
    top: 24px;
    right: 24px;
    width: calc(100% - 256px - 48px);
    transition: width .3s ease;
}

.chat-field-col .greet {
    font-size: 24px;
    color: #171717;
    line-height: 32px;
    margin-bottom: 40px;
}

.chat-field-col {
    /* min-height: 100%; */
    display: flex;
    flex-direction: column;
    /* flex-grow: 1; */
    justify-content: center;
}

.chat-exp-chip {
    max-width: 768px;
    margin-inline: auto;
    margin-top: 40px;
    overflow: hidden;
    width: 100%;
}

.chat-exp-chip .options-list {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 11px;
    justify-content: center;
    scrollbar-width: none;
    will-change: transform;
    transition: transform .2s ease-out;

}

.chat-exp-chip .light-hvrd-btn {
    border-radius: 12px;
    border: 1px solid #E6E6E6;
    padding: 9px;
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: fit-content;
}

.chat-exp-chip .incx {
    display: flex;
}


.chat-exp-chip .opt-name {
    font-size: 12px;
    line-height: 19px;
    color: #525252;
    font-weight: 500;
}

.pro-tag {
    background: #F0F0F0;
    border-radius: 6px;
    font-size: 11px;
    color: #000000CC;
    padding-inline: 6px;
    font-weight: 500;
}

.chat-type-area {
    max-width: 768px;
    margin-inline: auto;
    width: 100%;
}

.chat-active .options-list {
    flex-wrap: nowrap;
    justify-content: flex-start;
    /* overflow: auto hidden; */
}

textarea {
    resize: none;
}

.frm-inner {
    border: 1px solid #E6E6E6;
    padding: 13px;
    border-radius: 28px;
}

.q-rounded-btn {
    --sz: 36px;
    width: var(--sz);
    min-width: var(--sz);
    height: var(--sz);
    border-radius: 50%;
}

.q-rounded-btn:disabled {
    background: #999;
}

.qu-actions {
    display: flex;
    justify-content: space-between;
}

.ai-model-dd button {
    min-height: 36px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    border: 1px solid #E6E6E6;
    padding: 0 21px 0 12px;
}

.ai-model-dd button i {
    transform: translateX(12px);
    font-size: 12px;
    color: #525252;
}

.ai-model-dd .dropdown-menu li {
    align-items: flex-start;
    padding-block: 8px;
    padding-left: 28px;
    transition: background .2s ease;
}

.ai-model-dd .selected-model {
    color: #525252;
    max-width: 170px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ai-model-dd .pro-tag {
    transition: background .2s ease;
}

.ai-model-dd .dropdown-menu li:hover .pro-tag {
    background-color: #fff;
}

.side-actions {
    gap: 12px;
}

.ai-model-dd .dropdown-menu {
    min-width: 287px;
    box-shadow: 0px 0px 35px 0px #00000040;
    margin-left: -80px !important;
    margin-top: 15px !important;
    margin-bottom: 11px !important;
       max-height: calc(100vh - 345px);
    overflow: hidden auto;
    scrollbar-width: none;
}
.ai-model-dd .dropdown-menu::-webkit-scrollbar{
    height: 0;width: 0;display: none;
}

.model-dt h5 {
    font-size: 14px;
    font-weight: 500;
    line-height: 16px;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.model-dt p {
    font-size: 12px;
    color: #171717;
    line-height: normal;
}

.ai-model-dd .dropdown-menu li.active::before {
    position: absolute;
    content: '';
    background: url("/images/blue-tick-icon.svg") no-repeat center / contain;
    width: 16px;
    height: 13px;
    left: 5px;
    background-size: 15px;
    top: 11px;
    filter: brightness(0) saturate(100%) invert(20%) sepia(24%) saturate(5554%) hue-rotate(215deg) brightness(98%) contrast(93%);
}

.popover {
    border: 0;
}

.popover-body {
    background: var(--clr-black);
    box-shadow: 0px 0px 0px 0px #E6E6E6 inset, 0px 0px 0px 0px #FFFFFF inset;
    color: #fff;
    font-size: 12px;
    font-weight: 500;
    border-radius: 30px;
    padding: 12px 10px;
}

.bs-popover-auto[data-popper-placement^=right]>.popover-arrow::before {
    border-right-color: #000;
    transform: scale(1.4, 0.9) translateX(1px);
}

.bs-popover-auto[data-popper-placement^=right]>.popover-arrow::after {
    display: none;
}

.chat-response-col {
    padding: 0 24px 24px;
    margin-inline: -24px;
    /* max-height: calc(100dvh - 239px); */
    overflow: hidden auto;
    padding-right: 10px;
    flex-grow: 1;
    scrollbar-width: none;
}

.chat-box {
    /* min-height: calc(100dvh - 322px); */
    max-width: 768px;
    margin-inline: auto;
}

.chat-row.user {
    display: flex;
    justify-content: flex-end;
}

.chat-row.ai {
    display: flex;
    gap: 16px;
}

.chat-avatar {
    border: 1px solid #E6E6E6;
    border-radius: 50%;
    min-width: 32px;
    width: 32px;
    height: 32px;
}

.user-chat-bubble {
    padding: 8px 16px;
    background: #F0F0F0;
    border-radius: 24px;
}

.chat-bubble {
    color: #171717;
    font-size: 14px;
    max-width: 90%;
}

.chat-row:not(:first-of-type) {
    margin-top: 40px;
}

.chat-nav {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.support-dd-box a {
    color: #171717;
    width: calc(100% + 20px);
    margin-inline: -10px;
    padding-inline: 10px;
}

.chat-histories {
    padding-left: 4px;
}


/* ==== CMS ==== */

.cms-page a {
    color: #0E318B;
}

.cms-page a:hover {
    color: var(--clr-black);
}

.cms-header {
    display: flex;
    flex-direction: column;
    min-height: 230px;
    justify-content: center;
    background: #F0F0F0;
    padding: 12px 40px;
}

.cms-title {
    font-weight: 700;
    font-size: 35px;
}

.cms-updated {
    color: #666;
    font-size: 15px;
    margin-top: 5px;
}

.cms-content-box {
    padding-block: 50px 20px;
}

.cms-section h2 {
    font-size: 23px;
    font-weight: 600;
    margin-bottom: 5px;
}

.cms-section {
    margin-bottom: 30px;
}

.cms-section p {
    font-size: 15px;
    margin-bottom: 12px;
}

.cms-section ul {
    font-size: 15px;
    padding-left: 30px;
}

.cms-section ul li {
    margin-bottom: 6px;
    position: relative;
}


.cms-section ul li::before {
    position: absolute;
    content: '';
    left: -11px;
    top: 10px;
    border-radius: 50%;
    background: var(--clr-stone);
    --sz: 4px;
    width: var(--sz);
    height: var(--sz);
}


.cms-table-box {
    border-radius: 20px;
    overflow: hidden;
    width: fit-content;
    border: 1px solid #ededed;
    margin-top: 10px;
}

.cms-table th,
.cms-table td {
    padding: 7px 15px;
    font-size: 15px;
}

.cms-table th {
    background: #ededed;
}

.cms-footer {
    background: var(--clr-stone);
    padding-block: 40px;
}

.cms-footer * {
    color: #fff;
}

.cms-footer img {
    filter: brightness(0) saturate(100%) invert(100%) sepia(59%) saturate(0%) hue-rotate(224deg) brightness(115%) contrast(100%);
}

.footer-bottom {
    font-size: 13px;
}

/* === Media Query === */
@media screen and (min-width:1400px) {
    .plan-modal .modal-dialog{
        max-width: 1122px;
    }
}
@media screen and (min-width:768px) {

    .sidemenu.collapsed {
        width: 52px;
        overflow: hidden;
    }

    .collapsed .ac-box .inner {
        padding-left: 8px;
    }


    .collapsed .nav-head {
        padding-inline: 8px;
    }

    .collapsed .site-name {
        opacity: 0;
    }

    .collapsed .other-nav-action-col {
        padding-inline: 8px;
    }

    .collapsed .other-nav-action-col button {
        padding-inline: 11px;
    }

    .collapsed .other-nav-action-col button span {
        color: #fff;
    }

    .collapsed .logox a {
        transition: .3s ease;
    }

    .collapsed .logox:hover a {
        opacity: 0;
        pointer-events: none;
    }

    .collapsed .logox:hover .menu-closer {
        opacity: 1;
        pointer-events: auto;
    }

    .collapsed .other-nav-action-col {
        width: 54px;
    }

    .collapsed .start-new-chat-col {
        max-width: 60px;
    }

    .collapsed .start-new-chat-col button {
        padding: 0 9.4px;
        color: #fff;
    }

    .collapsed .chat-histroy-col {
        opacity: 0;
        pointer-events: none;
    }

    .collapsed .model-tools-block {
        width: 54px;
    }

    .collapsed .chat-swtc {
        padding-left: 10px;
        font-size: 0;
    }

    .collapsed .model-tools-block .title {
        opacity: 0;
        pointer-events: none;
    }

    .chat-box-section.active .canva-head {
        width: calc(100% - 52px - 48px);
    }

    .colps-popov-style .popover-body {
        border-radius: 10px;
        padding: 0 10px;
        height: 29px;
        display: flex;
        align-items: center;
        line-height: normal;
    }

}

@media screen and (max-width:1199px) {
    .payment-art-section {
        min-width: 477px;
    }
}


@media screen and (max-width:991px) {

    .plan-modal .modal-dialog,
    .payment-modal .modal-dialog {
        max-width: calc(100% - 12px);
        margin-inline: auto;
    }

    .payment-art-section {
        min-width: 50%;
    }

    .payment-art-section .inner-area::after {
        height: 421px;
        width: 100%;
        right: 0;
        background-size: auto;
    }

    .plan-box {
        width: 52%;
    }

    .chat-response-col {
        padding-right: 24px;
    }

}

@media screen and (max-width:767px) {
    .payment-made-box {
        padding: 33px 25px;
    }

    .plan-modal .top-info-box {
        flex-direction: column-reverse;
    }

    .plan-box,
    .plan-accept-box {
        width: 100%;
    }

    .plan-accept-box {
        padding: 35px;
    }

    .chat-box-section.active,
    .chat-box-section {
        --spacer: 0;
    }

    .canva-head {
        width: calc(100% - 48px);
        top: 16px;
    }

    .sm-menu-opener {
        width: 26px;
        height: 22px;
        justify-content: space-between;
        padding: 5px;
    }

    .sm-menu-opener span {
        width: 100%;
        height: 2px;
        background: #525252;
        transition: background 0.3s ease;
    }

    .sm-menu-opener:hover span {
        background: var(--clr-stone);
    }

    .sidemenu {
        left: -256px;
    }

    .sidemenu.active {
        left: 0;
    }

    .menu-mob-closer {
        --sz: 25px;
    }

    .menu-mob-closer i {
        color: #7A7A7A;
    }

    .overlay {
        inset: 0;
        background: transparent;
        z-index: 5;
        backdrop-filter: blur(0px);
        pointer-events: none;
        transition: 0.3s ease;
    }

    .overlay.active {
        backdrop-filter: blur(2px);
        background: #0000005c;
        pointer-events: auto;
    }

    .cms-table,
    .cms-table-box {
        width: 100%;
        overflow: auto;
        scrollbar-width: thin;
    }
}

@media screen and (max-width:575px) {
    .payment-art-section .inner-area::after {
        display: none;
    }

    .chat-field-col .greet {
        font-size: 20px;
        line-height: 28px;
        margin-bottom: 16px;
    }

    .chat-exp-chip {
        max-width: 100%;
        margin-top: 19px;
    }

    /* .chat-exp-chip .options-list {
        flex-wrap: nowrap;
        justify-content: flex-start;
    } */

    .plan-header {
        text-align: center;
    }

    .payment-art-section .inner-area {
        min-height: fit-content;
        background: #fff;
        padding-bottom: 0;
    }

    .payment-modal .modal-body {
        flex-direction: column;
    }

    .payment-art-section .logo img {
        filter: none;
    }

    .payment-art-section * {
        color: #1A1A1A99;
        ;
    }

    .plan-prc {
        justify-content: center;
        min-height: 40px;
        align-items: flex-end;
    }

    .plan-prc br {
        display: none;
    }

    .plan-dt .name {
        text-align: center;
        font-size: 16px;
        color: #1A1A1A99;
    }

    .plan-prc h3 {
        font-size:34px;
        color: #1A1A1AE5;
    }

    .payment-art-section .logo {
        margin-bottom: 15px;
    }

    .payment-made-box {
        padding: 23px 25px 33px 25px;
    }

    .plan-prc span {
        transform: translateY(3px);
    }

    .pay-secure p {
        margin-top: 24px;
    }

    .plan-details .table-tr .table-th:not(:first-of-type),
    .plan-details .table-tr .table-td:not(:first-of-type) {
        width: 55px;
        min-width: 55px;
    }

    .plan-box {
        padding: 15px 25px;
    }

    .plan-details .table-body .table-tr:last-of-type {
        margin-bottom: 0;
    }

    .ai-model-dd .dropdown-menu li {
        padding-left: 24px;
    }

    .chat-box-section .inner-area {
        padding: 73px 16px 24px;
    }

    .chat-response-col {
        padding-inline: 34px 26px;
        margin-inline: -24px;
        width: calc(100% + 42px);
    }

    .ai-model-dd .dropdown-menu {
        min-width: fit-content;
    }

    .cms-header {
        padding: 0;
    }
}

@media screen and (max-width:480px) {
    .cms-content-box {
        padding-block: 30px 20px;
    }

    .cms-section h2 {
        font-size: 18px;
    }

    .cms-table th,
    .cms-table td {
        font-size: 13px;
    }

    .cms-section ul,
    .cms-section p {
        font-size: 13px;
    }

    .cms-header {
        min-height: 180px;
    }

    .cms-title {
        font-size: 30px;
    }

    .cms-footer {
        padding-block: 31px;
    }

    .footer-bottom {
        font-size: 10px;
        margin-top: -5px;
    }
    .plan-accept-box {padding: 22px;}
}

.model-tools-block {
    /* display: flex;
    flex-direction: column;
    gap: 5px; */
    padding-inline: 8px;
    transition: .3s ease;
}


.model-listings {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-top: 5px;
}

.chat-swtc {
    min-height: 36px;
    gap: 6px;
    border-radius: 6px;
    padding-inline: 12px;
    font-size: 14px;
    display: flex;
    align-items: center;
}

.chat-swtc.active {
    background-color: var(--btn-hvr-clr);
}

.chat-swtc .incx img {
    max-width: 18px;
    height: auto;
}

.model-tools-block .title {
    font-size: 12px;
    margin-block: 5px 2px;
    text-transform: uppercase;
    font-weight: 500;
    transition: .3s ease;
}

.other-nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.tool-row:not(:last-of-type) {
    margin-bottom: 9px;
}

.other-nav-actions button {
    min-height: 37px;
    border-radius: 50px;
    font-size: 14px;
    gap: 5px;
    padding-inline: 15px;
    line-height: normal;
}

.other-nav-actions button img {
    max-width: 16px;
}

.solid-gry-btn {
    background-color: var(--btn-hvr-clr);
}

.solid-gry-btn:hover {
    background-color: #e1e1e1;
}

.cht-history-btn img {
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7500%) hue-rotate(164deg) brightness(106%) contrast(106%);
}

.chat-history-dd-menu {
    position: fixed;
    border: 1px solid #ededed;
    border-radius: 20px;
    padding: 12px;
    height: calc(100vh - 85px);
    top: 75px;
    right: 24px;
    background: #fff;
    max-width: 313px;width: 100%;
    display: flex;flex-direction: column;transition: 0.3s ease;transform-origin: top;
    transform: translateY(-10px) scale(0.9);
    opacity: 0;z-index: 2;
    pointer-events: none;box-shadow: 0px 0px 35px 0px #00000026;
}

.chat-history-dd-menu.active {
    transform: translateY(0) scale(1);
    opacity: 1;
    pointer-events: auto;
}

.search-box {
    border: 1px solid #ededed;
    border-radius: 20px;
    position: relative;
}

.histories-box {
    flex-grow: 1;
    margin-top: 9px;
    overflow: hidden auto;
    scrollbar-width: none;
}

.search-box i {
    position: absolute;
    left: 10px;
    top: 9px;
    color: #999;
    font-size: 15px;
}

.search-box input {
    font-size: 14px;
    min-height: 32px;
    padding-inline: 32px 14px;
    width: 100%;
}

.hist-dt {
    font-size: 13px;
    margin-bottom: 5px;
    display: block;
}

.history-box:not(:last-of-type) {
    margin-bottom: 9px;
}

.chat-name {
    border-radius: 5px;
    padding: 6px 10px;
    transition: background .3s ease;
    font-size: 15px;
    cursor: pointer;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.ht-chat-col:hover .chat-name,
.ht-chat-col.active .chat-name {
    background: #ededed;
}

.ht-chat-row {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.acount-ack-badge span {
    display: block;
    width: fit-content;
    border: 1px solid #ddd;
    border-radius: 30px;
    padding: 4px 15px;
    font-size: 13px;
    line-height: normal;
    font-weight: 600;
}


.acount-ack-badge.pro span {
    background: linear-gradient(90deg, rgb(172 60 189) 0%, rgb(64 121 241) 79%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.language-dd li.active {
    color: #0E318B;
}
@media screen and (max-width:767px) {
    .acount-ack-badge {
        margin-left: 11px;
    }

    .chat-history-dd-menu {
        height: calc(100vh - 81px);
        top: 68px;
    }
}

@media screen and (max-width:575px) {
    .other-nav-actions button {
        font-size: 0;
        gap: 0;
        width: 33px;
        min-height: 33px;
    }

    .other-nav-actions button img {
        max-width: 14px;
    }

    .chatlogin-btn {
        min-height: 34px;
        font-size: 13px;
    }
}

.chat-bubble {
    max-width: calc(100% - 68px);
}
.chat-row.ai{
    flex-wrap: wrap;
}
.chat-ai-actions {
    margin-left: 48px;display: flex;
}

.chat-response-col{
    position: relative;
}
.chat-scrollar{
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    --sz:30px;
    width: var(--sz);
    height: var(--sz);
    border-radius: 50%;
    bottom:11px;
    transition: .3s ease;
    opacity: 0;
    pointer-events: none;
}
.chat-scrollar i{
    color: #fff;
    font-size: 14px;
}
.chat-scrollar.active{
    opacity: 1;
    pointer-events: auto;
}

.chat-ai-actions button{
    --sz:27px;
    font-size: 14px;
    width: var(--sz);height: var(--sz);border-radius:6px;
    position: relative;
}

.chat-ai-actions .floating-icx{
    position: absolute;
    opacity: 0;
}


.chat-ai-actions button.active .floating-icx{
    opacity: 1;
}

.planMdl-pop-ovl .popover-arrow,
.chat-btn-pop-ovl .popover-arrow{display: none;}
.chat-btn-pop-ovl .popover-body{padding: 0 7px;
    min-height: 23px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;font-weight: 600;
    font-size: 11px;
}

.chat-response-wrapper{
    display: flex;
    position: relative;
}
.chat-response-wrapper.active{
    flex-grow: 1;
}
div.chat-response-col{
    max-height: calc(100dvh - 291px);
    height: auto;
    flex-grow: 1;
}
div.chat-box{padding-bottom: 0;}
.chat-switch-notif {
    position: fixed;
    left: calc(50% + 128px);
    font-size: 14px;
    /* background: #e3d6ff; */
    background: linear-gradient(90deg, rgb(213 200 255) 0%, rgb(255 220 220) 79%);
    border-radius: 6px;
    padding: 8px 20px;
    margin-top: -36px;
    max-width: 440px;
    text-align: center;
    transform: translate(-50% , -8px);
    opacity: 0;
    pointer-events: none;
    transition: .3s ease;
    z-index:3;
    transform-origin: top;
    top: 60px;width: max-content;box-shadow: 0 0 10px #5d5d5d1f;
}

.chat-switch-notif img{
    max-width: 21px;
    transform: translateY(-1px);
    margin-right: 5px;
}

.chat-switch-notif.show {
    transform:translate(-50%, 0);
    opacity: 1;
    pointer-events: auto;
}

.chat-box-section.active .chat-switch-notif{
    left: 50%;
}

.blue-btn:disabled{
    background: #737373;
}

.planMdl-pop-ovl .popover-body {
    font-size: 13px;
    background: #141414;
    text-align: center;
    border-radius: 10px;
    min-width: 130px;
}

@media screen and (max-width:768px) {
    .chat-switch-notif {
        left: 50%;
    }
}

@media screen and (max-width:575px) {
    div.chat-response-col {
        max-height: calc(100dvh - 270px);
    }
}

@media screen and (max-width:480px) {
    .chat-switch-notif {
        padding: 8px 10px;
        margin-top: -6px;
        width: 95%;
        z-index: 9;
    }
}

.sm-baner{
    border-radius: 6px;
    background: #b5cdff;
    color: #233d9f;
    display: block;
    margin: 18px auto 11px;
    white-space: normal;
    font-size: 11px;
    width: fit-content;
    padding-block: 7px;
}

.agree-to{
    font-size: 11px;
    color: #525252;
    max-width: 280px;
    margin-inline: auto;
    text-align: center;
}
.agree-to a{
    color: #525252;
    text-decoration: underline;
}
.agree-to a:hover{text-decoration: none;}


/* slider */

.tt-card {
    /* border: 1px solid #eded; */
    background: #fff;
    border-radius: 16px;
    padding: 17px;
    height: 100%;
}

.tt-card .revw-title{
    font-weight: 700;font-size: 18px;
}
.rating-box {
    font-size: 18px;
    margin-top: 2px;
}
.rating-box i {
    color: #ffc000;
}
.revw{
    color: #7A7A7A;
    font-size: 15px;
    margin-block: 16px 6px;
    line-height: normal;
}

.tt-card .profile-box{
    display: flex;
    gap: 7px;
    align-items: center;margin-top: 15px;
    margin-top: auto;
}
.tt-card .avtr{
     border-radius: 50%;
    overflow: hidden;
    --sz: 36px;
    width: var(--sz);
    min-width: var(--sz);
    height: var(--sz);
    gap: 7px;
}
.tt-card .info{
    display: flex;gap: 3px;
}
.tt-card .name{
    font-size: 13px;
    font-weight: 600;
}
.tt-card .dest{
    font-size: 11px;
    color: #747474;
}
.tt-card .inner{
    display: flex;
    flex-direction: column;
    height: 100%;
}
.splide{
    display: flex;
    flex-direction: column-reverse;
}

.splide .splide__arrow{
    position: static;font-size: 14px;
    transform: none;background: #b5cefd;
}

.splide__arrows {
    display: flex;
    justify-content: flex-end;
    padding-block: 10px;gap: 10px;
}
.splide .splide__arrow svg{
    fill: #0E318B;
    height: 11px;
    width: 11px;
}


.llm-logo {
    width: 25px; 
    height: 30px;
    display: inline-block; 
}

.compare-table {
    background: #fff;
    max-width: 700px;
    margin-inline: auto;
    width: 100%;
    border-radius: 21px;
    box-shadow: rgba(0, 0, 0, 0.08) 0 0 160px 20px;
    overflow: hidden;
    position: relative;
    z-index: 1;
    padding: 20px;
}
.compare-table * {
    color: var(--clr-black);
}

.compare-table .title{
    color: var(--clr-black);
    font-size: 28px;
    padding: 15px 0 20px;
}
.ct-box .logo img{
    max-width: 40px;
}
.ct-box .name{
    font-weight: 500;font-size: 16px;
}
.ct-box .logo{margin-bottom: 0;}
.ct-box .amount{font-size: 31px;}
.ct-box .details{font-size:14px;}
.ct-box .details i{font-size: 10px;}
.compare-table .footer-text{
    font-size: 15px;
    padding: 8px 20px;
    width: fit-content;
    margin-inline: auto;
    background: #cfd8ff;
    border-radius: 5px;
    margin-block: 18px 12px;
    color: #1a2e88;
}
.ct-wrapper{gap:30px;display: grid ; grid-template-columns: repeat(2, 1fr);max-width: calc(100% - 55px);margin-inline: auto;}
.ct-box{position: relative;}

.ct-box:first-of-type::before{
   position: absolute; content: ''; width: 1px; height: 100%; background: #c9c9c9; right: -15px; transform: translateX(-50%); top: 0;
}

.top-lead-box{
    gap:32px;
}
.vector img{max-width: 27px;}
.vc2 img{transform: scaleX(-1);}
.leadinfo .sr{
    font-size: 24px;width: 100%;
}
.leadinfo .label{
    font-size: 14px;line-height: 20px;
}
.leadinfo .rating-box{font-size:17px;}
.leadinfo .user-count{font-size: 28px;}
.leadinfo .rating-count{font-size: 14px;color: #525252;}
.info-sec-title{    font-size: 24px;
    text-align: center;
    display: block;
    margin-bottom: 16px;
}
.platform-supprt {
    width: fit-content;
    margin-inline: auto;
}

.browser-box{
    display: flex;gap: 16px;
}

@media screen and (max-width:767px) {
    .plan-box{
        display: none;
    }
}
@media screen and (max-width:575px) {
    .compare-table{display: none;}
}
@media screen and (max-width:480px) {
    .tt-card .revw-title {font-size: 16px;}
    .rating-box { font-size: 10px;}
    .revw {font-size: 14px;}
    .compare-table .title{font-size: 20px;}
    .compare-table .footer-text { font-size: 13px; margin-block: 14px 10px;}
    .ct-box .amount {font-size: 28px;}
    .ct-box .name {font-size: 13px;}
    .per{font-size: 13px;}
    .ct-box .details { font-size: 11px; line-height: normal; }
}


/* === AI LOADER OVERLAY === */
.ai-loader-overlay {
    display: none; /* default hidden */
    pointer-events: auto;
    position: fixed;
    inset: 0;
    background: rgba(12,16,28,0.78);
    backdrop-filter: blur(8px);
    z-index: 999999;
    justify-content: center;
    align-items: center;
}

/* === Spinner Container === */
.ai-loader {
    position: fixed;    /* IMPORTANT */
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) !important;
    text-align: center;
    z-index: 9999999;
}

/* Orbit Animation */
.orbit {
    width: 140px;
    height: 140px;
    border: 3px solid rgba(0, 204, 255, 0.35);
    border-radius: 50%;
    position: relative;
    animation: spin 1.8s linear infinite;
    margin: 0 auto;
    box-shadow: 0 0 18px rgba(0, 204, 255, 0.4);
}

/* Planet */
.planet {
    width: 26px;
    height: 26px;
    background: linear-gradient(45deg, #00e1ff, #007bff);
    border-radius: 50%;
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 15px #00e1ff;
}

/* Loading Text */
.loading-text {
    color: #d9faff;
    margin-top: 22px;
    font-size: 1.1rem;
    letter-spacing: 1px;
    font-weight: 500;
    animation: blink 1.5s infinite;
}

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

@keyframes blink {
    50% { opacity: 0.5; }
}

@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.98); }
    to { opacity: 1; transform: scale(1); }
}
/* Divider */
.wallet-divider {
    text-align: center;
    margin: 22px 0 14px;
    position: relative;
}

.wallet-divider span {
    background: #fff;
    padding: 0 12px;
    font-size: 14px;
    color: #777;
    font-weight: 500;
}

.wallet-divider::before,
.wallet-divider::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 35%;
    height: 1px;
    background: #ddd;
}

.wallet-divider::before { left: 0; }
.wallet-divider::after { right: 0; }

/* Wallet Button Wrapper */
.wallet-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-block: 0px 20px;
}

/* Base Wallet Btn */
.wallet-btn {
    width: 100%;
    height: 48px;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: .2s;
}

/* APPLE PAY */
.apple-pay-btn {
    background: #000;
    border: 1px solid #000;
}

.apple-pay-btn img {
    height: 22px;
    filter: brightness(1.2);
}

/* GOOGLE PAY */
.google-pay-btn {
    background: #fff;
    border: 1px solid #ddd;
}

.google-pay-btn img {
    height: 26px;
}

/* Hover */
.wallet-btn:hover {
    opacity: .85;
}

@media screen and (max-width:480px) {
    .wallet-divider::before,
    .wallet-divider::after {
        width: 30%;
    }
}

.wallet-buttons-row {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-block: 10px 15px;
}

.wallet-box-btn {
    width: 140px;
    height: 60px;
    background: #fff;
    border: 2px solid #d3d3d3;
    border-radius: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .25s ease-in-out;
    box-shadow: 0 0 0 rgba(0,0,0,0);
}

.wallet-box-btn img {
    width: 80px;
    height: auto;
    object-fit: contain;
}

/* Hover effect */
.wallet-box-btn:hover {
    transform: translateY(-4px); /* slight lift */
    box-shadow: 0 6px 14px rgba(0,0,0,0.12); /* soft shadow */
    border-color: #bcbcbc; /* subtle border darken */
    background: #fafafa;
}
