@import url('https://fonts.googleapis.com/css2?family=Google+Sans:ital,opsz,wght@0,17..18,400..700;1,17..18,400..700&display=swap');

html {
    -webkit-font-smoothing: antialiased;
    -moz-font-smoothing: antialiased;
    font-smoothing: antialiased;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    font-family: "Google Sans", sans-serif;
    background: var(--lightgrey);
    font-size: 16px;
    color: var(--navyblue);
    overflow-x: hidden;
    overflow-y: auto;
    font-weight: 400;
}

ul,
ol,
p,
form,
input,
textarea,
select,
pre,
em,
sub,
sup,
canvas,
section,
article,
aside,
img,
a,
li,
iframe,
table,
nav,
header,
footer,
body,
menu,
button {
    margin: 0;
    padding: 0;
    font-family: "Google Sans", sans-serif;
    vertical-align: baseline;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    list-style: none;
    text-decoration: none;
    outline: none;
    border: 0;
    border-spacing: 0;
    border-collapse: collapse;
}

*,
after,
before {
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 0;
    font-weight: normal;
}

body {
    line-height: 1;
    min-height: 100vh;
}

a {
    color: var(--navyblue);
    text-decoration: none;
    transition: all 0.2s ease-in-out 0s;
    -webkit-transition: all 0.2s ease-in-out 0s;
}

a:hover {
    text-decoration: none;
    color: #000;
}

p {
    line-height: 1.4;
    margin-bottom: 10px;
}

b,
strong {
    font-weight: 800;
}

u {
    text-decoration: underline;
}

i,
em {
    font-style: italic;
}

img {
    max-width: 100%;
}

.clear {
    clear: both;
}

input[type="button"],
input[type="submit"],
input[type="reset"],
input[type="text"] {
    appearance: none;
    -webkit-appearance: none;
    -webkit-appearance: none;
}

input[type="button"],
input[type="submit"],
input[type="reset"] {
    cursor: pointer;
    font-size: 16px;
}

/*select::-ms-expand { display: none; }*/
.clearfix {
    clear: both;
}


sup {
    top: -2px;
}

:root {
    --pink: #da0270;
    --navyblue: #022855;
    --darkgrey: #5A6A8A;
    --lightgrey: #F7F9FB;
    --green: #1A7A4E;
    --cardborder: #E3E3FF;
}




h1,
.h1 {
    font-size: 44px;
    font-weight: 700;
    letter-spacing: -1px;
    line-height: 1.2;
}

h2,
.h2 {
    font-size: 32px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

h3,
.h3 {
    font-size: 22px;
    font-weight: 700;
}

h4,
.h4 {
    font-size: 20px;
    font-weight: 700;
}

h5,
.h5 {
    font-size: 18px;
    font-weight: 700;
}

h6,
.h6 {
    font-size: 16px;
    font-weight: 600;
}

.text-12 {
    font-size: 12px !important;
}

.text-13 {
    font-size: 13px;
}

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

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

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

.text-18 {
    font-size: 18px !important;
}

.text-20 {
    font-size: 20px !important;
}


.text-caps {
    text-transform: uppercase;
}

.text-pink {
    color: var(--pink) !important;
}

.text-navyblue {
    color: var(--navyblue) !important;
}

.text-grey {
    color: var(--darkgrey) !important;
}

.font-300 {
    font-weight: 300 !important;
}

.font-400 {
    font-weight: 400 !important;
}

.font-500 {
    font-weight: 500 !important;
}

.bold {
    font-weight: 600 !important;
}

@media (min-width: 1300px) {
    .container {
        max-width: 1100px;
        padding-left: 0;
        padding-right: 0;
    }
}




.btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    justify-content: center;
    min-width: 60px;
    border-radius: 10px;
    font-size: 15px;
    border: solid 1px;
    line-height: normal;
    padding: 10px 26px;
    min-height: 46px;
    font-weight: 600;
}



/*btn-primary*/
.btn.btn-primary {
    background: var(--pink);
    color: #fff;
    border-color: var(--pink);
}

.btn.btn-primary:hover {
    background: #BE0563;
    color: #fff;
    border-color: #BE0563;
}

.btn.btn-secondary {
    background: var(--navyblue);
    color: #fff;
    border-color: var(--navyblue);
}

.btn.btn-secondary:hover {
    background: #02162D;
    color: #fff;
    border-color: #02162D;
}

.btn.btn-white-outline {
    background: transparent;
    color: #fff;
    border-color: #fff;
}

.btn.btn-white-outline:hover {
    background: #fff;
    color: var(--navyblue);
    border-color: #fff;
}

.btn.btn-white-outline:hover img {
    filter: invert(1);
}

.btn.btn-white-outline:focus img,
.btn.btn-white-outline:active img {
    filter: invert(0);
}

.btn.btn-navyblue-outline {
    background: transparent;
    color: var(--navyblue);
    border-color: var(--navyblue);
}

.btn.btn-navyblue-outline:hover {
    background: var(--navyblue);
    color: #fff;
    border-color: var(--navyblue);
}




/*btn-sm*/
.btn.btn-sm {
    padding: 9px 20px;
    border-radius: 8px;
    min-height: 38px;
}


.btn:focus,
.btn:active {
    outline: none;
    box-shadow: none !important;
}

.btn:active {
    background: #000 !important;
    color: #fff !important;
    /*margin-bottom: -2px !important;*/
}

label {
    cursor: inherit;
}



/*checkbox*/
.checkbox {
    display: inline-block;
    position: relative;
}

.checkbox input[type="checkbox"] {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    visibility: hidden;
    border: 0;
    margin: 0;
    padding: 0;
}

.checkbox label {
    display: inline-block;
    position: relative;
    padding-left: 30px;
    margin-bottom: 5px;
    padding-top: 2px;
    font-weight: 400;
    line-height: normal;
    font-size: 14px;
    min-height: 22px;
    vertical-align: top;
}

.checkbox label:before {
    content: "";
    background: #fff;
    width: 22px;
    height: 22px;
    position: absolute;
    border: solid 2px #D4DDED;
    border-radius: 4px;
    left: 0;
    top: 0;
}

.checkbox label:hover:before {
    background: #fff;
    border-color: var(--pink);
}

.checkbox input[type="checkbox"]:checked+label:before {
    background: var(--pink) url(../images/check.svg) center no-repeat;
    background-size: 14px;
    border-color: var(--pink);
}


/*radio*/
.radio {
    display: inline-block;
    position: relative;
}

.radio input[type="radio"] {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    visibility: hidden;
    border: 0;
    margin: 0;
    padding: 0;
}

.radio label {
    display: inline-block;
    position: relative;
    padding-left: 30px;
    margin-bottom: 5px;
    padding-top: 2px;
    font-weight: 400;
    line-height: normal;
    font-size: 14px;
    vertical-align: top;
}

.radio label:before {
    content: "";
    width: 22px;
    height: 22px;
    position: absolute;
    border: solid 2px #D4DDED;
    border-radius: 24px;
    left: 0;
    top: 0;
}

.radio label:hover:before {
    background: #fff;
    border-color: var(--pink);
}

.radio input[type="radio"]:checked+label:before {
    background: #fff;
    border-width: 6px;
    border-color: var(--pink);
}

.radio+.radio,
.checkbox+.checkbox {
    margin-left: 20px;
}


.modal-content {
    border: 0;
    border-radius: 0;
}

.modal-header {
    background: var(--pink);
    color: #fff;
    padding-top: 1rem;
    padding-bottom: 1rem;
    border-radius: 0 !important;
    border-bottom: 0;
}

.btn-close {
    filter: invert(1);
    -webkit-filter: invert(1);
    opacity: 1;
}



.form-group {
    display: block;
    width: 100%;
}

.form-label {
    display: block;
    font-weight: 600;
    font-size: 13px;
    margin-bottom: 6px;
}

.form-control::-webkit-input-placeholder {
    opacity: 1;
    color: #777777;
}

.form-control::-moz-placeholder {
    opacity: 1;
    color: #777777;
}

.form-control:-ms-input-placeholder {
    opacity: 1;
    color: #777777;
}

.form-control:-moz-placeholder {
    opacity: 1;
    color: #777777;
}

.form-control {
    font-weight: 400;
    opacity: 1;
    box-shadow: none;
    outline: none;
    border: solid 1px #E8ECF2;
    border-radius: 10px;
    background-color: #ffffff;
    padding-left: 14px;
    padding-right: 14px;
    font-size: 14px;
    font-weight: 400;
    height: 46px;
}

.form-control.form-select {
    padding-right: 32px;
}

.form-control:focus {
    outline: none;
    box-shadow: none;
}

textarea.form-control {
    min-height: 120px;
    resize: none;
}

input[type=file].form-control {
    padding-top: 8px;
}

.form-control:focus {
    border-color: #000;
}


/* =============================================
   Fliply Landing Page
   ============================================= */

.text-white {
    color: #fff !important;
}

.text-darkgrey {
    color: var(--darkgrey) !important;
}

.bg-navyblue {
    background-color: var(--navyblue) !important;
}

.bg-lightgrey {
    background-color: var(--lightgrey) !important;
}

.bg-white {
    background-color: #fff !important;
}

.bg-pink {
    background-color: var(--pink) !important;
}

.line {
    display: inline-block;
    width: 1px;
    height: 16px;
    background: rgba(255, 255, 255, 0.35);
    vertical-align: middle;
}

.line-dark {
    background: var(--cardborder);
}

.section-label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    color: var(--pink);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.section-label.text-white {
    color: #fff;
}

.process-section .section-label {
    color: var(--pink);
}

.section-padding {
    padding-top: 70px;
    padding-bottom: 70px;
}

.section-padding-sm {
    padding-top: 60px;
    padding-bottom: 60px;
}

/* Header */
.header {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 5px 0;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    height: 74px;
    background: #fff;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04);
}


.header .navbar-nav .nav-link {
    color: var(--navyblue);
    font-size: 15px;
    font-weight: 400;
    padding: 8px 12px;
}


.header .navbar-nav .nav-link:hover {
    color: var(--pink);
}

.header .logo img {
    height: 47px;
    display: block;
    width: auto;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.navbar-toggler {
    border-color: 0;
    padding: 6px 10px;
    outline: none !important;
    border: 0;
    box-shadow: none !important;

}


.navbar-toggler-icon {
    background: url(../images/menu.svg) center no-repeat;
    background-size: 32px;
}


/* Hero */
.hero-section {
    background: var(--navyblue);
    position: relative;
}

@media screen and (min-width:1600px) {
    .hero-section {
        min-height: 640px;
        display: flex;
        align-items: center;
    }

}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-section h1 {
    color: #fff;
    margin-bottom: 15px;
    width: 100%;
    max-width: 490px;
}

.hero-section p {
    color: rgba(255, 255, 255, 0.70);
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 520px;
    font-weight: 400;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
    margin-bottom: 40px;
}

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    border-top: solid 1px rgba(255, 255, 255, 0.10);
    padding-top: 32px;
}

.hero-stat-item strong {
    display: block;
    font-size: 26px;
    font-weight: 700;
    color: var(--pink);
    margin-bottom: 10px;
}

.hero-stat-item span {
    font-size: 11px;
    letter-spacing: 0.5px;
    color: #fff;
    text-transform: uppercase;
    display: block;
}

.hero-image-wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;

}

.hero-image-wrap:after {
    content: "";
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(2, 40, 85, 1) 40%, rgba(2, 40, 85, 0) 100%);
}

.hero-image-wrap img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: right top;
}

/* Secondary Nav */
.secondary-nav {
    background: var(--navyblue);
    position: relative;
    padding: 20px 0;
}

.secondary-nav:before {
    content: "";
    background-color: rgba(0, 0, 0, 0.20);
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 1;
    pointer-events: none;
}

.secondary-nav .container {
    position: relative;
    z-index: 2;
}

.secondary-nav-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 18px;
}

.secondary-nav-list li {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.70);
    font-weight: 600;
    border-radius: 6px;
    border: solid 1px rgba(255, 255, 255, 0.05);
    padding: 16px 16px;
    flex-grow: 1;
    background: linear-gradient(to right, rgba(2, 40, 85, 1) 0%, rgba(0, 48, 107, 1) 100%);
}

.secondary-nav-list li:last-child {
    margin-right: 0;
}

.secondary-nav-list li:after {
    content: "";
    position: absolute;
    right: -21px;
    width: 20px;
    height: 20px;
    background: url(../images/piplineright-icon.svg) center no-repeat;
}

.secondary-nav-list li:last-child::after {
    display: none;
}

/* Features */


.feature-card {
    background: #fff;
    border: 1px solid var(--cardborder);
    border-radius: 22px;
    padding: 30px;
    height: 100%;
    transition: box-shadow 0.3s ease;
    gap: 10px;
    display: flex;
    flex-direction: column;
}

.feature-card:hover {
    box-shadow: 0 8px 30px rgba(2, 40, 85, 0.08);
}

.feature-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: var(--navyblue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.feature-icon img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    display: block;
}

.feature-card h6 {
    margin-bottom: 2px;
    margin-top: 10px;
}

.feature-card p {
    color: var(--darkgrey);
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 0;
}

/* Process */
.process-section {
    background: var(--navyblue);
}



.process-section h2 {
    color: #fff;
}

.process-step {
    height: 100%;
    text-align: center;
    padding: 24px;
    border-radius: 22px;
    background-color: rgba(255, 255, 255, 0.04);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.process-number {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--pink);
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.process-step h6 {

    margin-top: 12px;
}

.process-step p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 15px;

    margin-bottom: 0;
}

/* How It Works — video cards */
.how-card {
    cursor: pointer;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.how-card-thumb {
    position: relative;
    border-radius: 22px 22px 0 0;
    overflow: hidden;
    aspect-ratio: 16 / 11;
    background: var(--lightgrey);
    border: 1px solid var(--cardborder);
    border-bottom: 0;
}

.how-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}


.how-card-thumb::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.20);
    transition: background 0.3s ease;
}

.how-card:hover .how-card-thumb::after {
    background: rgba(2, 40, 85, 0);
}

.how-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #fff;
    color: var(--navyblue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    padding-left: 3px;
    box-shadow: 0 4px 14px rgba(2, 40, 85, 0.25);
    transition: transform 0.2s ease, color 0.2s ease;
}

.how-card:hover .how-play,
.how-card:focus-visible .how-play {
    transform: translate(-50%, -50%) scale(1.08);
    color: var(--pink);
}

.how-card-body {
    flex: 1;
    margin-top: 0;
    padding: 20px;
    background: #fff;
    border-radius: 0 0 22px 22px;
    border: solid 1px var(--cardborder);
    text-align: left;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.how-card:hover .how-card-body,
.how-card:focus-visible .how-card-body {
    box-shadow: 0 16px 40px rgba(2, 40, 85, 0.14);
    transform: translateY(-2px);
}

.how-card-body h6 {
    margin-bottom: 8px;
    font-weight: 700;
    color: var(--navyblue);
}

.how-card-body p {
    margin-bottom: 0;
    font-size: 14px;
    line-height: 1.5;
    color: var(--darkgrey);
}

/* App Promo */
.section-heading {
    text-align: center;
    margin: 0 auto 30px;
}

.section-heading p {
    color: var(--darkgrey);
    font-size: 15px;

    margin: 0 auto 30px;
    text-align: center;
}

.app-store-badges {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 24px;
}

.app-store-badges img {
    height: 48px;
    width: auto;
}

/* Pricing */

.pricing-card {
    border-radius: 18px;
    padding: 28px 28px;
    height: 100%;
    position: relative;
    border: 1px solid var(--cardborder);
    background: #fff;
    display: flex;
    flex-direction: column;
}

.pricing-card-head {
    text-align: center;
    margin-bottom: 20px;
}

.pricing-card h5 {
    text-align: center;
    margin-bottom: 6px;
}

.pricing-card .pricing-desc {
    color: var(--darkgrey);
    font-size: 12px;
    margin-bottom: 0;
    text-align: center;
}

.pricing-features {
    flex: 1;
    margin-bottom: 16px;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    line-height: 1.4;
    margin-bottom: 10px;
    color: var(--navyblue);
}

.pricing-features li i {
    margin-top: 3px;
    flex-shrink: 0;
    width: 14px;
    text-align: center;
}

.pricing-features li.is-included i {
    color: var(--pink);
}

.pricing-features li.is-excluded {
    color: rgba(255, 255, 255, 0.4);
}

.pricing-features li.is-excluded i {
    color: rgba(255, 255, 255, 0.35);
}

.pricing-note {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 12px;
    line-height: 1.4;
    color: var(--darkgrey);
    margin-bottom: 20px;
}

.pricing-note::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--pink);
    margin-top: 5px;
    flex-shrink: 0;
}

.pricing-bottom {
    margin-top: auto;
    text-align: center;
}

.pricing-price-wrap {
    margin-bottom: 18px;
}

.pricing-price {
    margin-bottom: 4px;
    text-align: center;
    color: var(--navyblue);
}

.pricing-price-label {
    font-size: 12px;
    line-height: 1.4;
    color: var(--darkgrey);
    margin-bottom: 0;
}

.pricing-save-badge {
    display: inline-block;
    background: #0A991F;
    color: #fff;
    font-size: 12px;
    font-weight: 400;

    padding: 3px 8px;
    border-radius: 20px;
}

.pricing-price-unit {
    font-size: 14px;
    font-weight: 500;
    color: var(--darkgrey);
}

.pricing-year-box {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
    padding: 10px 14px;
    border-radius: 10px;
    border: dashed 1px rgba(255, 255, 255, 0.20);
}

.pricing-year-price {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
}

.pricing-year-price small {
    font-size: 12px;
    font-weight: 500;
    color: rgba(255, 255, 255, 1);
}

.pricing-card-growth .pricing-price-unit {
    color: rgba(255, 255, 255, 0.7);
}

.pricing-card-pro .pricing-price-unit {
    color: rgba(255, 255, 255, 0.85);
}

.pricing-card-pro .pricing-year-box {
    /*background: rgba(255, 255, 255, 0.15);*/
    border-color: rgba(255, 255, 255, 0.40);
}

.pricing-card-growth {
    background: var(--navyblue);
    border-color: var(--navyblue);
    color: #fff;
}

.pricing-card-growth h5 {
    color: #fff;
}

.pricing-card-growth .pricing-desc {
    color: rgba(255, 255, 255, 0.55);
}

.pricing-card-growth .pricing-features li.is-included {
    color: rgba(255, 255, 255, 0.9);
}

.pricing-card-growth .pricing-price {
    color: #fff;
}

.pricing-card-growth .pricing-price-label {
    color: rgba(255, 255, 255, 0.55);
}

.pricing-card-pro {
    background: var(--pink);
    border-color: var(--pink);
    color: #fff;
}

.pricing-card-pro h5 {
    color: #fff;
}

.pricing-card-pro h5 small {
    font-size: 11px;
}

.pricing-card-pro .pricing-desc {
    color: rgba(255, 255, 255, 0.85);
}

.pricing-card-pro .pricing-features li.is-included {
    color: #fff;
}

.pricing-card-pro .pricing-features li.is-included i {
    color: #fff;
}

.pricing-card-pro .pricing-price {
    color: #fff;
}

.pricing-card-pro .pricing-price-label {
    color: rgba(255, 255, 255, 0.85);
}

.pricing-badge {
    position: absolute;
    top: -11px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--navyblue);
    color: #fff;
    font-size: 10px;
    font-weight: 600;
    padding: 6px 18px;
    border-radius: 20px;
    white-space: nowrap;
}

/* FAQ */


.faq-card {
    background: #fff;
    border: 1px solid var(--cardborder);
    border-radius: 22px;
    padding: 20px;
    height: 100%;
}

.faq-card h6 {
    margin-bottom: 10px;
}

.faq-card p {
    color: var(--darkgrey);
    font-size: 15px;

    margin-bottom: 0;
}

/* Footer */
.site-footer {
    background: var(--navyblue);
    color: rgba(255, 255, 255, 0.8);
    padding-top: 40px;
}

.site-footer .footer-logo img {
    height: 28px;
    width: auto;
}

.site-footer h4 {
    color: rgba(255, 255, 255, 0.50);
    font-size: 13px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.site-footer p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.50);
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.65);
    font-size: 15px;
}

.footer-links a:hover {
    color: #fff;
}

.footer-links a.active {
    color: #fff;
    text-decoration: underline;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px;
}

.footer-social a:hover {
    background: var(--pink);
    border-color: var(--pink);
    color: #fff;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact li i {
    margin-top: 3px;
    color: var(--pink);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 20px 0;
    margin-top: 30px;
}

.footer-bottom p {
    margin-bottom: 0;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.30);
}

.footer-legal {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    color: rgba(255, 255, 255, 0.30);
    font-size: 13px;
}



.footer-legal a:hover {
    color: #fff;
}

/* Scroll offset for fixed header anchor links */
section[id],
div[id] {
    scroll-margin-top: 74px;
}

.navbar-expand-lg .navbar-collapse {
    justify-content: end;
    gap: 15px;
}

.header .btn {
    font-weight: 400;
}

/* Desktop: offcanvas behaves as inline navbar */
@media (min-width: 992px) {
    #mainNavbar.offcanvas {
        position: static;
        z-index: auto;
        display: flex !important;
        flex-basis: auto;
        flex-grow: 1;
        width: auto !important;
        height: auto !important;
        max-height: none;
        visibility: visible !important;
        transform: none !important;
        background-color: transparent !important;
        border: 0 !important;
        box-shadow: none !important;
        top: auto;
        right: auto;
        left: auto;
        transition: none;
    }

    #mainNavbar .offcanvas-body {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        gap: 15px;
        padding: 0;
        overflow: visible;
    }
}

.modal-backdrop {
    z-index: 1046;
}

.modal-backdrop.show {
    opacity: 0.7;
}

.chip {
    display: inline-block;
    padding: 6px 15px;
    border-radius: 10px;
    background-color: #ECEDF0;
    font-size: 12px;
    font-weight: 700;
}

.faq-section {
    background-color: #fff;
    border-radius: 22px;
    padding: 60px 96px;
}

/* Login Page */
.login-page {
    background: var(--lightgrey);
}

.login-section {
    padding-top: 50px;
    padding-bottom: 70px;
}

.login-content h1 {
    margin-bottom: 18px;
    line-height: 1.15;
}

.login-intro {
    color: var(--darkgrey);
    font-size: 17px;

    margin-bottom: 28px;
}

.login-features-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.login-feature-item {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 14px;
    line-height: 1.3;
    color: var(--darkgrey);
}

.login-feature-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: 8px;
    background: var(--navyblue);
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-feature-icon img {
    width: 20px;
    height: 20px;
    object-fit: contain;
    display: block;
}

.login-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 12px 40px rgba(2, 40, 85, 0.1);
    padding: 0;

    width: 100%;
    max-width: 480px;
    padding: 40px;
}

.login-tabs {
    border-bottom: 1px solid var(--cardborder);
    padding: 0 0;
    gap: 0;
    justify-content: center;
    margin-top: -20px;
}

.login-tabs .nav-item {
    flex-grow: 1;
}

.login-tabs .nav-link {
    border: 0;
    border-bottom: 2px solid transparent;
    border-radius: 0;
    color: var(--darkgrey);
    font-size: 18px;
    font-weight: 600;
    padding: 10px 18px;
    margin-bottom: -1px;
    background: transparent;
    width: 100%;
}

.login-tabs .nav-link:hover {
    color: var(--navyblue);
    border-color: transparent;
}

.login-tabs .nav-link.active {
    color: var(--navyblue);
    background: transparent;
    border-color: transparent;
    border-bottom-color: var(--pink);
}

.login-tab-content {
    padding: 28px 0 0 0;
}



.passiconfield .form-control {
    padding-right: 42px;
}

.passiconfield i {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--darkgrey);
    font-size: 14px;
    cursor: pointer;
}

.forgotpass a {
    font-size: 13px;
    color: var(--darkgrey);
    text-decoration: underline;
}

.forgotpass a:hover {
    color: var(--pink);
}

.login-card-footer p {
    margin-bottom: 0;
    font-size: 14px;
    color: var(--darkgrey);
}

.login-card-footer a {
    font-weight: 500;
    text-decoration: underline;
}

}

/* Multi-step signup styling */
.signup-steps-indicator {
    padding: 0 10px;
    margin-bottom: 30px !important;
}

.step-indicator-line {
    background-color: #E8ECF2 !important;

    height: 1px;
    left: 40px;
    right: 40px;
    top: 16px;
}

.step-indicator-progress {
    background-color: var(--pink) !important;
    transition: width 0.3s ease;
    top: 16px;
    left: 40px;
    right: 40px;
    height: 1px;
}

.step-indicator-item {
    position: relative;
    padding: 0 14px;
}

.step-indicator-item .step-number {
    width: 32px;
    height: 32px;
    min-width: 32px;
    background-color: #CCD4DD;
    color: var(--navyblue);
    font-size: 14px;
    font-weight: 700;
    border: 2px solid transparent;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.step-indicator-item.active .step-number {
    background-color: var(--navyblue) !important;
    color: #fff !important;
    box-shadow: none !important;
}

.step-indicator-item.completed .step-number {
    background: var(--pink) url(../images/check.svg) center no-repeat !important;
    background-size: 16px !important;
    color: #fff !important;
    font-size: 0;
    box-shadow: none !important;
}

.step-indicator-item .step-label {
    font-size: 11px;
    color: var(--darkgrey);
    font-weight: 500;
}

.step-indicator-item.active .step-label {
    color: var(--navyblue);
    font-weight: 700;
}

.step-indicator-item.completed .step-label {
    color: var(--pink);
    font-weight: 700;
}

/* Custom Billing Switch */
.form-switch-container {
    user-select: none;
}

.form-switch-container .form-check-input {
    background-color: var(--navyblue) !important;
    border-color: var(--navyblue) !important;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e") !important;
    background-position: left center;
    width: 40px;
    height: 20px;
    border-radius: 20px;
    cursor: pointer;
    transition: background-position .15s ease-in-out;
}

.form-switch-container .form-check-input:checked {
    background-color: var(--pink) !important;
    border-color: var(--pink) !important;
    background-position: right center;
}

/* Plan Selection Cards */
.plan-card {
    border: 1px solid var(--cardborder) !important;
    border-radius: 10px;
    background-color: #fff;
    transition: all 0.2s ease-in-out;
    user-select: none;
}

.plan-card:hover {
    border-color: var(--pink) !important;
    box-shadow: 0 4px 12px rgba(2, 40, 85, 0.04);
}

.plan-card.active {
    border-color: var(--pink) !important;
    box-shadow: 0 0 0 1px var(--pink);
}

.plan-card .text-end .h5 {
    padding: 5px 10px;
    border-radius: 5px;
    background-color: #F7F9FB;
    display: inline-block;
    font-size: 13px;
    white-space: nowrap;
}

.plan-card h6 span {
    display: inline-block;
    font-size: 12px;
    color: var(--darkgrey);
    font-weight: normal;
}

.custom-radio-circle {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid #D2D6DC;
    position: relative;
    transition: all 0.2s ease;
}

.plan-card.active .custom-radio-circle {
    border-color: var(--navyblue);
}

.plan-card.active .custom-radio-circle::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--navyblue);
}

.plan-price-tag .badge {
    background-color: #F3F4F6 !important;
    color: #111827 !important;
    font-weight: 700 !important;
    font-size: 13px !important;
    padding: 8px 14px !important;
    display: inline-block;
    border: none;
}

/* Form transition support */
.signup-step-pane {
    transition: opacity 0.2s ease;
}

.signup-step-pane.d-none {
    display: none !important;
}

/* Success Checkmark Animation */
.check-icon-circle {
    background-color: var(--green) !important;
    box-shadow: 0 8px 20px rgba(26, 122, 78, 0.2);
}

.animate-bounce {
    animation: bounce 0.6s infinite alternate;
}

@keyframes bounce {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(-4px);
    }
}

/* Additional UI styling */
.btn-back-link {
    color: var(--darkgrey) !important;
    transition: color 0.2s ease;
}

.btn-back-link:hover {
    color: var(--navyblue) !important;
}

.passiconfield i {
    z-index: 10;
}


.monthfree {
    display: block;
    width: 100%;
    background-color: #F0F4FF;
    border-left: solid 3px #0212C7;
    border-radius: 8px;
    padding: 10px;
}

.monthfree label {
    display: block;
    width: 100%;
    color: #0668E8;
    font-size: 14px;
}

.monthfree span {
    display: block;
    width: 100%;
    color: var(--darkgrey);
    font-size: 12px;
    margin-top: 4px;
}


/* =============================================
   App Dashboard Layout (Sidebar + Kanban)
   ============================================= */
.app-layout {
    display: flex;
    align-items: stretch;
    min-height: 100vh;
    width: 100%;
}

/* Sidebar */
.app-sidebar {
    width: 220px;
    min-width: 220px;
    background: var(--navyblue);
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    flex-direction: column;
    position: sticky;
    top: 0;
    height: 100vh;
    z-index: 1045;
}

.sidebar-logo {
    padding: 8px 12px;
    display: flex;
    height: 60px;
    gap: 8px;
    align-items: center;
    border-bottom: solid 1px rgba(255, 255, 255, 0.05);
}

.sidebar-logo img {
    height: 34px;
    width: auto;
    display: block;
}

.sidebar-collapse-btn {
    margin-left: auto;
    width: 34px;
    height: 34px;
    flex-shrink: 0;
    background: transparent;
    border: 0;
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.65);
    font-size: 16px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.15s ease;
}

.sidebar-collapse-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

.sidebar-nav {
    flex: 1 1 auto;
    overflow-y: auto;
    padding: 6px 12px 12px;
}

.sidebar-section-label {
    display: block;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
    padding: 18px 12px 8px;
}

.sidebar-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 10px;
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 15px;
    font-weight: 400;
    margin-bottom: 2px;
    transition: all 0.15s ease;
    position: relative;
}

.sidebar-link .iconbox {
    width: 16px;
    height: 16px;
    min-width: 16px;
    text-align: center;
    display: inline-block;
    background: url(../images/sidebar-icon.svg) 0 0 no-repeat;
    flex-shrink: 0;
}

.sidebar-link .iconbox.preloadedcostsicon {
    background-position: 0 -26px;
}

.sidebar-link .iconbox.notificationsicon {
    background-position: 0 -52px;
}

.sidebar-link .iconbox.partnersicon {
    background-position: 0 -78px;
}

.sidebar-link .iconbox.myaccounticon {
    background-position: 0 -104px;
}

.sidebar-link .iconbox.helpcentericon {
    background-position: 0 -130px;
}

.sidebar-link .iconbox.feedbackicon {
    background-position: 0 -156px;
}

.sidebar-link .iconbox.settingsicon {
    background-position: 0 -182px;
}

.sidebar-link .iconbox.signouticon {
    background-position: 0 -208px;
}

.sidebar-link:hover {
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
}

.sidebar-link.active {
    background: var(--pink);
    color: #fff;
    font-weight: 500;
}

.sidebar-link.active:hover {
    background: var(--pink);
    color: #fff;
}

.sidebar-badge {
    margin-left: auto;
    min-width: 20px;
    height: 20px;
    padding: 0 6px;
    border-radius: 20px;
    background: var(--pink);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.sidebar-link.active .sidebar-badge {
    background-color: var(--navyblue);
}

.sidebar-user {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 16px 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.sidebar-avatar {
    width: 32px;
    height: 32px;
    min-width: 32px;
    border-radius: 50%;
    background: var(--pink);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sidebar-avatar img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    border-radius: 50%;
}

.sidebar-user-info strong {
    display: block;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.2;
}

.sidebar-user-info span {
    display: block;
    color: rgba(255, 255, 255, 0.45);
    font-size: 10px;
    margin-top: 2px;
}

/* Collapsed (icon-only) sidebar — desktop only */
@media (min-width: 992px) {
    .app-sidebar.collapsed {
        width: 76px;
        min-width: 76px;
    }

    .app-sidebar.collapsed .sidebar-logo {
        justify-content: center;
        padding: 8px;
    }

    .app-sidebar.collapsed .sidebar-logo-link {
        display: none;
    }

    .app-sidebar.collapsed .sidebar-collapse-btn {
        margin-left: 0;
    }

    .app-sidebar.collapsed .sidebar-section-label {
        opacity: 0;
        height: 0;
        padding: 12px 0 0;
        overflow: hidden;
    }

    .app-sidebar.collapsed .sidebar-nav {
        padding-left: 14px;
        padding-right: 14px;
    }

    .app-sidebar.collapsed .sidebar-link {
        justify-content: center;
        padding: 11px 0;
        gap: 0;
    }

    .app-sidebar.collapsed .sidebar-link span:not(.sidebar-badge) {
        display: none;
    }

    .app-sidebar.collapsed .sidebar-badge {
        position: absolute;
        top: 4px;
        right: 8px;
        min-width: 16px;
        height: 16px;
        padding: 0 4px;
        font-size: 9px;
    }

    .app-sidebar.collapsed .sidebar-user {
        justify-content: center;
        padding: 16px 8px;
    }

    .app-sidebar.collapsed .sidebar-user-info {
        display: none;
    }
}

/* Main area */
.app-main {
    flex: 1 1 auto;
    min-width: 0;
    display: flex;
    flex-direction: column;

}

/* Top bar */
.app-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 16px;
    height: 60px;
    padding: 5px 24px;
    border-bottom: 1px solid var(--cardborder);
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 100;
}

.app-topbar-title {
    flex-grow: 1;
}

.app-topbar-title p {
    color: var(--darkgrey);
    font-size: 14px;
    margin-bottom: 0;
    line-height: normal;
}

.app-topbar-right {
    display: flex;
    align-items: center;
    white-space: nowrap;
    gap: 18px;
}



.topbar-stat {
    text-align: left;
    background-color: #fff;
    position: relative;
    white-space: nowrap;
    flex-grow: 1;
    border: solid 1px var(--cardborder);
    border-radius: 12px;
    padding: 5px 10px;
    display: inline-flex;
    flex-direction: column;
    gap: 3px;
}

.topbar-stat strong {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: var(--navyblue);
    line-height: 1.1;
}

.topbar-stat.is-profit strong {
    color: var(--green);
}

.topbar-stat span {
    display: block;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--darkgrey);
}

/* Mobile sidebar toggle (hidden on desktop) */
.app-mobile-bar {
    display: none;
}

.sidebar-backdrop {
    display: none;
}

.withsubsidebar {
    flex: 1 1 auto;
    display: flex;
}

/* Kanban board */
.maincontainer {
    flex: 1 1 auto;
    display: flex;
    gap: 16px;
    padding: 24px;
    width: 100%;

    align-items: flex-start;
}

.pipeline-board {
    overflow-x: auto;
    overflow-y: hidden;
    height: calc(100vh - 60px);
}

.pipeline-column {
    width: 290px;
    min-width: 290px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.pipeline-col-head {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 14px;
    background: #EEF2F8;
    border: 1px solid #D4DDED;
    border-radius: 12px 12px 0 0;
    border-bottom: 0;
}

.pipeline-col-head h2 {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    color: var(--navyblue);
    margin: 0;
}

.pipeline-col-count {
    margin-left: auto;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--navyblue);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.pipeline-col-body {
    background: #fff;
    border: 1px solid #D4DDED;
    border-top: 0;
    border-radius: 0 0 12px 12px;
    padding: 12px;
    flex: 1 1 auto;
    overflow-y: auto;
    min-height: 120px;
}

/* Add new deal button */
.add-deal-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 100%;
    background: #fff;
    border: 1px dashed #C9CFDA;
    border-radius: 10px;
    color: var(--navyblue);
    font-size: 13px;
    font-weight: 600;
    padding: 11px;
    margin-bottom: 12px;
    transition: all 0.15s ease;
}

.add-deal-btn:hover {
    border-color: var(--pink);
    color: var(--pink);
}

/* Deal card */
.deal-card {
    background: #F7F9FB;
    border: 1px solid #D4DDED;
    border-left-width: 3px;
    border-radius: 10px;
    padding: 14px;
    margin-bottom: 8px;
    box-shadow: 0 1px 2px rgba(2, 40, 85, 0.04);
    transition: box-shadow 0.15s ease;
    line-height: normal;
}

.deal-card:last-child {
    margin-bottom: 0;
}

.deal-card:hover {
    box-shadow: 0 6px 18px rgba(2, 40, 85, 0.08);
}

.deal-card-alert {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #E53935;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    padding: 4px 9px;
    border-radius: 4px;
    margin-bottom: 10px;
}

.deal-card-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 8px;
}

.deal-card-head h3 {
    font-size: 15px;
    font-weight: 700;
    color: var(--navyblue);
    margin: 0;
    line-height: 1.25;
}

.deal-card-head h3 a:hover {
    color: var(--pink);
}

.deal-menu-btn {
    background: transparent;
    border: 0;
    color: var(--darkgrey);
    font-size: 15px;
    line-height: 1;
    padding: 2px 6px;
    border-radius: 6px;
    cursor: pointer;
}

.deal-menu-btn:hover {
    background: #F1F3F6;
    color: var(--navyblue);
}

.deal-card .dropdown-menu {
    border: 1px solid #E7EAEF;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(2, 40, 85, 0.12);
    padding: 6px;
    min-width: 150px;
}

.deal-card .dropdown-item {
    font-size: 13px;
    font-weight: 500;
    border-radius: 6px;
    padding: 8px 10px;
}

.deal-card .dropdown-item.text-danger:hover {
    background: #FDECEC;
    color: var(--pink) !important;
}

.deal-meta {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--darkgrey);
    margin-top: 5px;
}

.deal-meta i {
    font-size: 11px;
    width: 12px;
    text-align: center;
}

.deal-card-img {
    display: block;
    width: 100%;
    height: 110px;
    object-fit: cover;
    border-radius: 8px;
    margin-top: 10px;
}

.deal-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 10px;
}

.deal-tag {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 3px 9px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
    background: #EEF0F4;
    flex-grow: 0 !important;
    color: var(--darkgrey);
}

.deal-tag.tag-jv,
.deal-tag.tag-upcoming {
    background: #FFF1DD;
    color: #E67E22;
}

.deal-tag.tag-danger {
    background: #FDE7E7;
    color: #D92D20;
}

.deal-tag.tag-progress {
    background: #E7F0FF;
    color: #0668E8;
}

.deal-tag.tag-success {
    background: #E3F5EC;
    color: var(--green);
}

.deal-tag.deal-green {
    background: #E7F5D5;
    color: #2A6000;
}

/* Price grid */
.deal-prices {
    margin-top: 4px;
}

.deal-price-row {
    display: flex;
    gap: 4px;
}

.deal-price-box {
    flex: 1;
    border: 1px solid var(--cardborder);
    border-radius: 8px;
    padding: 8px 10px;
    margin-top: 4px;
    background: #fff;
}

.deal-price-box label {
    display: block;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    color: var(--darkgrey);
    margin-bottom: 4px;
}

.deal-price-box strong {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: var(--navyblue);
}

/* Progress */


.deal-progress-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 11px;
    color: var(--darkgrey);
    margin-bottom: 6px;
}

.deal-progress-track {
    width: 100%;
    height: 5px;
    border-radius: 5px;
    background: #E8ECF2;
    overflow: hidden;
}

.deal-progress-fill {
    height: 100%;
    border-radius: 5px;
    background: var(--pink);
}

/* Profit footer */
.deal-profit {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: 12px;

    color: var(--green);
    font-size: 13px;
    font-weight: 700;
}

.deal-profit i {
    font-size: 11px;
}

/* =============================================
   Welcome / Onboarding Video Modal
   ============================================= */
.welcome-modal .modal-content {
    border: 0;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 24px 60px rgba(2, 40, 85, 0.25);
    background: #fff;
}

.welcome-modal-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
}

.welcome-modal-head h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--navyblue);
    margin-bottom: 6px;
}

.welcome-modal-head p {
    font-size: 14px;
    color: var(--darkgrey);
    margin-bottom: 0;
    line-height: 1.4;
}

.welcome-skip {
    flex-shrink: 0;
    background: transparent;
    border: 0;
    color: var(--navyblue);
    font-size: 14px;
    font-weight: 500;
    text-decoration: underline;
    padding: 2px 4px;
    cursor: pointer;
}

.welcome-skip:hover {
    color: var(--pink);
}

.welcome-video {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: #02162D;
    max-width: 1447px;
    aspect-ratio: 16 / 9;
}

.welcome-video-el {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: #02162D;
}


@media (max-width: 575px) {
    .welcome-modal .modal-content {
        padding: 18px;
    }

    .welcome-modal-head h3 {
        font-size: 18px;
    }

    .welcome-play {
        width: 58px;
        height: 58px;
        font-size: 18px;
    }
}

/* =============================================
   Pre-loaded Costs Page
   ============================================= */

.costs-layout {
    display: flex;
    align-items: flex-start;
    gap: 28px;
}

/* Vertical tabs */
.costs-tabs {
    width: 220px;
    min-width: 220px;
    gap: 6px;
    border-right: 1px solid var(--cardborder);
    min-height: 220px;
    padding: 16px;
    background-color: #fff;

}

.costs-tab {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    text-align: left;
    background: transparent;
    border: 0;
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 14px;
    font-weight: 600;
    color: var(--navyblue);
    cursor: pointer;
    transition: all 0.15s ease;
}

.costs-tab i {

    text-align: center;
    font-size: 15px;
    color: var(--darkgrey);
}

.deleteaccountlink i {
    width: 17px;
    height: 17px;
    color: #E62225;
}

.deleteaccountlink {
    color: #E62225 !important;
    background-color: #FDE7E7 !important;
}

.costs-tab:hover {
    background: #EEF0F4;
    color: var(--navyblue);
    text-decoration: none;
}

.costs-tab.active,
.costs-tab.active:hover {
    background: var(--pink);
    color: #fff;
}

.costs-tab.active i {
    color: #fff;
}

/* Content */
.costs-content {
    flex: 1 1 auto;
    min-width: 0;
}

.card {
    background: #fff;
    border: 1px solid var(--cardborder);
    border-radius: 12px;
    padding: 0;
}

.card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    background: #fff;
    border-bottom: 0;
    padding: 20px;
    padding-bottom: 0;
    border-radius: 12px 12px 0 0 !important;
}

.card-header p {
    margin-bottom: 0;
}

.card-body {
    padding: 20px;
}


.costs-total {
    font-size: 18px;
    font-weight: 700;
    color: var(--navyblue);
}

.costs-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 12px 0;
    border-bottom: 1px solid #EEF0F4;
}


.costs-label {

    color: var(--navyblue);
    font-weight: 400;
    flex-grow: 1;
}

.costs-input {
    width: 150px;
    min-width: 150px;
    text-align: right;
    font-weight: 700;
    color: var(--navyblue);
}

.costs-actions {
    display: flex;
    justify-content: flex-end;
    margin-top: 22px;
}


.sidebaricon {
    width: 17px;
    height: 17px;
    display: inline-block;
    min-width: 17px;
    background: url(../images/subsidebaricons.svg) 0 0 no-repeat;
    filter: invert(1);
    opacity: 0.40;
}

.sidebaricon.holdicon {
    background-position: 0 -27px;
}

.sidebaricon.sellicon {
    background-position: 0 -55px;
}

.sidebaricon.partnersicon {
    background-position: 0 -81px;
}

.sidebaricon.tradesicon {
    background-position: 0 -108px;
}

.sidebaricon.suppliericon {
    background-position: 0 -134px;
}

.sidebaricon.profileicon {
    background-position: 0 -162px;
}

.sidebaricon.passwordicon {
    background-position: 0 -189px;
}

.sidebaricon.overviewicon {
    background-position: 0 -216px;
}

.sidebaricon.feasibilityicon {
    background-position: 0 -243px;
}

.sidebaricon.taskicon {
    background-position: 0 -270px;
}

.sidebaricon.documentdicon {
    background-position: 0 -296px;
}

.sidebaricon.reportsicon {
    background-position: 0 -324px;
}

.sidebaricon.whiteboarddicon {
    background-position: 0 -351px;
}


.costs-tab.active .sidebaricon {
    filter: none;
    opacity: 1;
}

.input-group-text {
    background-color: #F7F9FB;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 700;
    border-color: #D4DDED;
    height: 34px;
    padding: 1px 10px;
    line-height: normal;
}

.form-control-sm {
    border-color: #D4DDED;
    font-size: 16px;
    font-weight: 700;
    height: 34px;
    padding: 10px;
    border-radius: 6px;
}

.costsrightpanels .form-control-sm {
    width: 120px;
}

.costsrightpanels {
    display: inline-flex;
    gap: 6px;
}

.sectitlerow {
    color: #848484;
    font-weight: 500;
    padding: 10px 0;
    font-size: 14px;
}

/* =============================================
   Room-by-Room Renovation Planner
   ============================================= */
.reno-budget-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    padding: 20px;
}

.reno-budget-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #EEF2F8;
    border-radius: 8px;
    padding: 8px 14px;
    font-size: 14px;
    color: var(--navyblue);
}

.reno-budget-pill .reno-budget-label {}

.reno-budget-pill .reno-budget-val {
    font-weight: 700;
}

.reno-planner {
    display: flex;
    gap: 0;
    border-top: solid 1px var(--cardborder);
    position: relative;
}

/* Mobile filter bar (hidden on desktop) */
.reno-mobilebar {
    display: none;
}

/* Sidebar */
.reno-sidebar {
    width: 220px;
    min-width: 220px;
    border-right: solid 1px var(--cardborder);
    --bs-offcanvas-width: 280px;
}

/* Sidebar stays visible on desktop regardless of the collapse class */
@media (min-width: 992px) {
    .reno-sidebar.collapse {
        display: block !important;
    }
}

.reno-sidebar .offcanvas-body {
    padding: 16px;
}

.reno-accordion .accordion-item {
    background: transparent;
    border: 0;
    margin-bottom: 6px;
}

.reno-accordion .accordion-header {
    margin: 0;
}

.reno-accordion .accordion-button {
    text-transform: uppercase;
    letter-spacing: 0.4px;
    font-size: 12px;
    font-weight: 700;
    color: var(--darkgrey);
    background: transparent;
    padding: 8px 0px;
    box-shadow: none;
}

.reno-accordion .accordion-button:not(.collapsed) {
    color: var(--darkgrey);
    background: transparent;
    box-shadow: none;
}

.reno-accordion .accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.reno-accordion .accordion-button::after {
    width: 12px;
    height: 12px;
    background-size: 12px;
}

.reno-accordion .accordion-body {
    padding: 0;
}

.reno-room-list {
    list-style: none;
    margin: 0 0 8px;
    padding: 0;
}

.reno-room-list li {
    margin-bottom: 2px;
}

.reno-room {
    display: flex;
    align-items: center;
    justify-content: space-between;

    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #000;
    text-decoration: none;
    transition: background 0.15s, color 0.15s;
}

.reno-room span {
    line-height: normal;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    gap: 8px;
    padding: 7px 8px;
    flex-grow: 1;
}

.reno-room span i {
    width: 16px;
    text-align: center;
    opacity: 0.4;
    font-size: 13px;
}

.reno-room:hover {
    background: var(--lightgrey);
    color: var(--navyblue);
}

.reno-room.active {
    background: var(--pink);
    color: #fff;
}

.reno-room.active span i {
    opacity: 1;
}

.reno-room-del {
    color: var(--pink);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.15s;
    width: 30px;
    text-align: center;
}

.reno-room:hover .reno-room-del {
    opacity: 0.85;
    visibility: visible;
}

.reno-room.active .reno-room-del {
    color: #fff;
}

.reno-room.active:hover .reno-room-del {
    opacity: 1;
    visibility: visible;
}

.reno-add-btn {
    display: block;
    text-align: center;
    border: 1px dashed var(--cardborder);
    border-radius: 8px;
    padding: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--navyblue);
    text-decoration: none;
}

.reno-add-btn:hover {
    border-color: var(--pink);
    color: var(--pink);
}

/* Task table */
.renotable-outer {
    display: block;
    width: 100%;
    padding: 20px;
    max-width: calc(100% - 220px);
}

.reno-tablewrap {
    flex-grow: 1;
    border: 1px solid var(--cardborder);
    border-radius: 12px;
    overflow: hidden;
    min-width: 0;
}

.reno-table-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 14px 18px;
    background: #EEF2F8;
    border-bottom: 1px solid var(--cardborder);
}

.reno-table-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--navyblue);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.reno-table-meta {
    font-size: 13px;
    color: var(--darkgrey);
    font-weight: 600;
}

.reno-table thead th {
    text-transform: uppercase;
    letter-spacing: 0.4px;
    font-size: 13px;
    font-weight: 700;

    background: #fff;
    border-bottom: 1px solid var(--cardborder) !important;
    border-right: 1px solid var(--cardborder);
    vertical-align: middle;
    padding: 10px 10px;
    white-space: nowrap;
}

.reno-table tbody td {
    padding: 7px 10px;
    border-bottom: 1px solid var(--cardborder);
    border-right: 1px solid var(--cardborder);
    vertical-align: middle;
    font-size: 15px;
    font-weight: 400;
    color: var(--navyblue);
    min-width: 140px;
}

.reno-table tbody tr:last-child td {
    border-bottom: 0;
}

.reno-col-check,
.reno-table td:first-child {
    width: 46px;
}

.reno-col-action,
.reno-col-budget {
    text-align: center;
}

.reno-item {
    font-weight: 600;
}

.reno-task-title {
    display: block;
    font-weight: 700;
    color: var(--navyblue);
    padding-bottom: 4px;
    min-width: 300px;
}

.reno-task-sub {
    display: block;
    font-size: 12px;
    color: var(--darkgrey);
}

.reno-budget-input {
    width: 100%;
    min-width: 110px;
    margin-left: auto;
    text-align: right;
    font-weight: 700;
    color: var(--navyblue);
}

.reno-table .checkbox label {
    margin-bottom: 0;
    padding-left: 22px;
}

.reno-table .cost-del {
    color: var(--pink);
}

.reno-addtask-link {
    display: block;
    padding: 12px 18px;
    font-size: 14px;
    font-weight: 600;
    color: #888888;
    text-decoration: none;
    border-top: 1px solid var(--cardborder);
}

.reno-addtask-link:hover {
    color: var(--pink);
}

/* Offcanvas backdrop (not shipped in this Bootstrap build) */
.offcanvas-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1040;
    width: 100vw;
    height: 100vh;
    background-color: #000;
}

.offcanvas-backdrop.fade {
    opacity: 0;
}

.offcanvas-backdrop.show {
    opacity: 0.5;
}

/* =============================================
   Notifications Page
   ============================================= */
.notify-wrap {
    display: block;
}

.notify-card {
    background: transparent;
    overflow: hidden;
}

.notify-list {
    display: flex;
    flex-direction: column;
}

.notify-item {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    background: #fff;
    padding: 16px 20px;
    border-top: 1px solid #EEF0F4;
    transition: background 0.15s ease;
}

.notify-link {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    color: inherit;
    text-decoration: none;
}

.notify-item:first-child {
    border-top: 0;
}

.notify-item:hover {
    background: #f4f4f4;
}

/* Unread (new) notifications */
.notify-item.is-unread {
    background: #f9f9f9;
    position: relative;
}

.notify-item.is-unread:before {
    content: "";
    width: 4px;
    top: 0;
    bottom: 0;
    left: 0;
    position: absolute;
    z-index: 1;
    background: #ddd;
}

.notify-item.is-unread:hover {
    background: #f3f5f7;
}

.notify-item.is-unread .notify-text {
    font-weight: 600;
}

.notify-label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 6px;
    color: var(--navyblue);
}

.notify-label.label-overdue {
    color: #D92D20;
}

.notify-label.label-budget {
    color: #C77700;
}

.notify-label.label-due,
.notify-label.label-upcoming {
    color: #E67E22;
}

.notify-label.label-completed {
    color: var(--green, #27AE60);
}

.notify-label.label-stage {
    color: #2980B9;
}

.notify-text {
    margin: 0;
    font-size: 15px;
    line-height: 1.4;
    color: var(--navyblue);
}

.notify-time {
    flex-shrink: 0;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    color: var(--darkgrey);
    white-space: nowrap;
    padding-top: 2px;
}

/* Footer: per-page + pagination */
.notify-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.notify-perpage {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: var(--darkgrey);
}

.notify-perpage .form-select {
    width: auto;
    min-width: 72px;
    height: 42px;
    background-color: #fff;
}

.notify-pagination {
    display: flex;
    align-items: center;
    gap: 8px;
}

.page-btn {
    width: 42px;
    height: 42px;
    border: 1px solid var(--cardborder);
    border-radius: 8px;
    background: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--navyblue);
    font-size: 14px;
    font-weight: 600;
    transition: all 0.15s ease;
}

.page-btn:hover {
    border-color: var(--navyblue);
    color: var(--navyblue);
}

.page-btn.active,
.page-btn.active:hover {
    background: #02162D;
    border-color: #02162D;
    color: #fff;
}


/* =============================================
   Partners & Trades Page
   ============================================= */
.partner-content-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--navyblue);
    margin-bottom: 18px;
}

.partner-group {
    background: #fff;
    border: 1px solid var(--cardborder);
    border-radius: 12px;
    margin-bottom: 16px;
}

.partner-group-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 20px;
}

.partner-group-title {
    flex: 1 1 auto;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.partner-group-title h5 {
    font-size: 17px;
    font-weight: 700;
    color: var(--navyblue);
    margin: 0;
}

.partner-group-title h5 span {
    color: var(--darkgrey);
    font-weight: 600;
}

.partner-group-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
}

.partner-toggle {
    background: transparent;
    border: 0;
    color: var(--darkgrey);
    font-size: 15px;
    line-height: 1;
    padding: 6px;
    cursor: pointer;
}

.partner-toggle i {
    transition: transform 0.2s ease;
}

.partner-toggle:not(.collapsed) i {
    transform: rotate(180deg);
}

.partner-group-body {
    padding: 0 20px 20px;
}

.partner-empty {
    color: var(--darkgrey);
    font-size: 14px;
    margin: 0;
    padding: 4px 0 0;
}

/* Partner item card */
.partner-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    border: 1px solid var(--cardborder);
    border-radius: 10px;
    padding: 10px;
    margin-bottom: 12px;
    background: #fff;
}

.partner-item:last-child {
    margin-bottom: 0;
}

.partner-avatar {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 50%;
    background: var(--pink);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 50%;
}

.partner-info {
    flex: 1 1 auto;
    min-width: 0;
}

.partner-info-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 8px;
}

.partner-info-top h6 {
    font-size: 16px;
    font-weight: 700;
    color: var(--navyblue);
    margin: 0;
}

.partner-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
}

.partner-actions a {
    color: var(--darkgrey);
    font-size: 15px;
}

.partner-actions a:hover {
    color: var(--pink);
}

/* Meta is laid out with a Bootstrap row / col-md-4 */
.partner-meta {
    margin-bottom: 8px;
}

.partner-meta span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 14px;
    color: var(--darkgrey);
    word-break: break-word;
}

.partner-meta span i {
    font-size: 13px;
    color: var(--darkgrey);
    vertical-align: middle;
    display: block;
    position: relative;
    top: 1px;
    line-height: 1;
}

.partner-meta span i.fa-envelope {
    top: 2px;
}

.partner-desc {
    font-size: 14px;
    color: var(--darkgrey);
    line-height: 1.5;
    margin: 0;
    white-space: pre-line;
}


/* Suppliers flat list (no group accordion) */
.partner-flat-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 18px;
}

.partner-flat-list .partner-item {
    margin-bottom: 10px;
}

.partner-flat-list .partner-item:last-child {
    margin-bottom: 0;
}

/* Add Contact modal */
.contact-modal .modal-content {
    border: 0;
    border-radius: 16px;
    padding: 26px;
    box-shadow: 0 24px 60px rgba(2, 40, 85, 0.25);
    background: #fff;
}

.contact-modal-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 20px;
}

.contact-modal-head h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--navyblue);
    margin: 0;
}

.contact-modal-close {
    background: transparent;
    border: 0;
    color: var(--navyblue);
    font-size: 20px;
    line-height: 1;
    padding: 2px 6px;
    cursor: pointer;
}

.contact-modal-close:hover {
    color: var(--pink);
}

.contact-modal textarea.form-control {
    min-height: 70px;
}


/* =============================================
   Partners & Trades — Bootstrap accordion overrides
   ============================================= */
.partner-accordion .accordion-item {
    border: 1px solid var(--cardborder);
    border-radius: 12px !important;
    margin-bottom: 16px;
    overflow: hidden;
    background: #fff;
}

.partner-accordion .accordion-header {
    position: relative;
}

.accordion-header .btn-sm {
    font-size: 12px;
    min-height: 30px;
    padding: 5px 15px;
}

.partner-accordion .accordion-button {
    position: relative;
    font-size: 17px;
    font-weight: 700;
    color: var(--navyblue);
    background: #fff;
    padding: 16px 20px;
    padding-right: 170px;
    border-radius: 12px;
    box-shadow: none;
}

.partner-accordion .accordion-button:not(.collapsed) {
    color: var(--navyblue);
    background: #fff;
    box-shadow: none;
    border-radius: 12px 12px 0 0;
}

.partner-accordion .accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

/* Keep the chevron pinned to the far right (rotation still handled by Bootstrap) */
.partner-accordion .accordion-button::after {
    position: absolute;
    right: 20px;
    top: 15px;
    margin: 0;
}

.acc-count {
    color: inherit;
    font-weight: 700;
    margin-left: 4px;
    white-space: nowrap;
}

/* + Add New sits just left of the chevron, above the toggle button */
.partner-add-btn {
    position: absolute;
    right: 52px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
}

.partner-accordion .accordion-body {
    padding: 4px 20px 20px;
}

.editbuttonicon {
    width: 24px;
    height: 24px;
    display: inline-block;
    min-width: 24px;
    background: url(../images/editicon.svg) center no-repeat;
}

.deletebuttonicon {
    width: 24px;
    height: 24px;
    display: inline-block;
    min-width: 24px;
    background: url(../images/deleteicon.svg) center no-repeat;
}

/* =============================================
   Help Center Page
   ============================================= */
.help-section-head {
    padding: 16px 24px;
    border-bottom: 1px solid var(--cardborder);
    background: #fff;
}

.help-section-head h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--navyblue);
    margin: 0;
}

.help-video-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--navyblue);
    margin-bottom: 16px;
}

/* Navy play arrow (overrides the pink welcome-play) */
.help-video .welcome-play {
    color: var(--navyblue);
    width: 86px;
    height: 86px;
    font-size: 26px;
}


/* Support session success modal */
.support-success-icon {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    background: #EAF2FE;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.support-success-check {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--navyblue);
    color: #fff;
    font-size: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
}


/* Delete contact confirmation modal */
.delete-modal-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: #FDE7E7;
    color: #D92D20;
    font-size: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
}

.trial-modal-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--pink);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    box-shadow: 0 0 0 10px #FCE0EE;
}

.trial-modal-icon img {
    width: 30px;
    height: 30px;
    filter: brightness(0) invert(1);
}


/* Share Your Feedback — emoji rating */
.feedback-faces {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-bottom: 26px;
}

.feedback-face-input {
    position: absolute;
    opacity: 0;
    width: 1px;
    height: 1px;
    pointer-events: none;
}

.feedback-face {
    width: 64px;
    height: 64px;
    border-radius: 20px;
    border: 1px solid transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--navyblue);
    cursor: pointer;
    transition: all 0.15s ease;
    background: #fff;
}

.feedback-face:hover {
    border-color: var(--pink);

}

.feedback-face-input:checked+.feedback-face {
    border-color: var(--pink);
    color: var(--pink);
    box-shadow: 0 1px 8px rgba(0, 0, 0, 0.2);
}

.feedback-face-input:focus-visible+.feedback-face {
    outline: 2px solid var(--pink);
    outline-offset: 2px;

}

textarea.feedbacktextarea {
    min-height: 130px !important;
}

.feedbackicon {
    width: 36px;
    height: 36px;
    display: inline-block;
    background: url(../images/feedbackicons.svg) 0 0 no-repeat;
    background-size: 34px;
}

.feedbackicon.verysadicon {
    background-position: 2px 2px;
}

.feedbackicon.sadicon {
    background-position: 2px -38px;
}

.feedbackicon.normalicon {
    background-position: 2px -77px;
}

.feedbackicon.happyicon {
    background-position: 2px -117px;
}

.feedbackicon.veryhappyicon {
    background-position: 2px -157px;
}

.righticon {
    width: 14px;
    height: 14px;
    display: inline-block;
    background: url(../images/mdi-arrow-right.svg) 0 0 no-repeat;
}

.btn-navyblue-outline:hover .righticon {
    filter: invert(1);
}

.deal-card .btn {
    font-size: 12px;
    min-height: 30px;
    padding-top: 5px;
    padding-bottom: 5px;
    width: 100%;
    margin-top: 15px;
    background-color: #fff;
}

/* =============================================
   My Account Page
   ============================================= */
.account-wrap {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.account-avatar {
    position: relative;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 1px solid var(--pink);
    background: var(--lightgrey);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 26px;
    font-size: 30px;
    color: var(--navyblue);
}

.account-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 50%;
}

.avatarchange {
    display: inline-block;
    position: absolute;
    right: -2px;
    bottom: -2px;
    z-index: 2;
}

.avatarchange input[type=file] {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    visibility: hidden;
}

.account-avatar-edit {
    display: inline-block;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid #c9c9c9;
    background: #fff url(../images/editicon.svg) center no-repeat;
    background-size: 18px;
    color: #fff;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.account-avatar-edit:hover {
    background-color: var(--cardborder);
}

.deleteavatar {
    position: absolute;
    z-index: 2px;
    top: 2px;
    right: 2px;
    width: 26px;
    height: 26px;
    border: solid 1px #ddd;
    border-radius: 50px;
    background-color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--pink);
    font-size: 14px;
    cursor: pointer;
}

.deleteavatar:hover {
    background-color: var(--pink);
    color: #fff;
}

/* =============================================
   Contact Us Page
   ============================================= */



/* Left navy info panel */
.contact-info {
    background: var(--navyblue);
    border-radius: 12px;
    padding: 20px;
    height: 100%;
    color: #fff;
}

.contact-info-block {
    padding-bottom: 22px;
    margin-bottom: 22px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.contact-label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--pink);
    margin-bottom: 12px;
}

.contact-email {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    font-size: 20px;
    font-weight: 400;
}

.contact-email i {
    color: var(--pink);
}

.contact-email:hover {
    color: #fff;
    opacity: 0.85;
}

.contact-address {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #fff;
    font-size: 18px;
    line-height: 1.45;
    margin: 0;
}

.contact-address i {
    color: var(--pink);
    margin-top: 4px;
}

/* Right form panel */
.contact-form {
    padding: 14px 18px 14px 14px;
}

.contact-form h3 {
    color: var(--navyblue);
}

@media (max-width: 991px) {
    .contact-form {
        padding: 0;
    }
}


/* =============================================
   Basic Feasibility Page (full page, no sidebar)
   ============================================= */
.feaso-page {
    min-height: 100vh;

}

/* Top bar */
.feaso-topbar {
    position: sticky;
    top: 0;
    z-index: 30;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;

    background: #fff;
    border-bottom: 1px solid var(--cardborder);
    padding: 14px 24px;
}

.feaso-topbar-left {
    display: flex;
    align-items: center;
    gap: 18px;
}

.feaso-divider {
    width: 1px;
    height: 36px;
    background: var(--cardborder);
}

.feaso-topbar-title {
    display: inline-flex;
    gap: 30px;
    padding-left: 18px;
    border-left: solid 1px var(--cardborder);
}

.feaso-topbar-title small {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--navyblue);
    margin-bottom: 2px;
}

.feaso-topbar-title h1 {
    font-size: 22px;
    font-weight: 700;
    color: var(--pink);
    letter-spacing: 0;
    margin: 0;
}

.feaso-body {
    padding: 24px;
    max-width: 1920px;
    margin-left: auto;
    margin-right: auto;
}

/* Property Information */
.feaso-prop-img {
    width: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.prop-row {
    display: flex;
    gap: 16px;
    padding: 5px 0 7px 0;
}

.prop-label {
    width: 230px;
    min-width: 230px;
    padding-top: 2px;


}

.prop-value {
    word-break: break-word;
    font-weight: 700;
    color: var(--navyblue);
    line-height: normal;
}

.prop-note {
    font-size: 12px;
    color: var(--darkgrey);
    font-style: italic;
    margin-top: 2px;
}

/* Totals */
.totals-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 13px 0;
    border-top: 1px solid #EEF0F4;
    color: var(--navyblue);
}

.totals-row .cost-row-actions a {
    width: 22px;
    height: 22px;
}



.totals-val {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    white-space: nowrap;
}

.totals-val .edit-ico {
    color: var(--darkgrey);
    font-size: 12px;
    cursor: pointer;
}

/*.totals-val .edit-ico:hover {
    color: var(--pink);
}*/

.totals-row.is-profit,
.totals-row.is-profit .totals-val {
    color: var(--green);
    font-weight: 700;
    font-size: 20px;
}

.totals-row.is-profit span {
    color: var(--navyblue);
    font-weight: normal;
    font-size: 16px;
}

/* Segmented tabs */
.feaso-tabs {
    display: flex;
    flex-wrap: nowrap;
    overflow: auto;
    gap: 8px;
    border: 0;
    margin-bottom: 18px;
}

.feaso-tabs .nav-link {
    border: 1px solid var(--cardborder);
    border-radius: 8px;
    background: #fff;
    color: var(--darkgrey);
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    padding: 11px 18px;
}

.feaso-tabs .nav-link:hover {
    border-color: var(--navyblue);
}

.feaso-tabs .nav-link.active {
    background: var(--navyblue);
    color: #fff;
    border-color: var(--navyblue);
}

/* Cost rows — hover reveal edit/delete */
.cost-row-actions {
    display: inline-flex;
    align-items: center;
    gap: 6px;

}

.cost-row-actions a {
    width: 22px;
    height: 22px;
    border: 1px solid var(--cardborder);
    border-radius: 5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: var(--darkgrey);
    background-color: #fff;
}

.cost-row-actions a.cost-del {
    color: #D92D20;
}

.cost-row-actions a:hover {
    border-color: currentColor;
}

.add-cost-row {
    text-align: right;
    margin-top: 16px;
}

.costwithsome {
    display: inline-flex;
    flex-grow: 1;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}


/* Reno contingency $ / % unit dropdown */
.reno-unit {
    width: auto !important;
    min-width: 58px;
    flex: 0 0 auto;
    font-weight: 700;
    color: var(--navyblue);
}

.costsrightpanels .input-group select.form-control-sm {
    padding-top: 0;
    padding-bottom: 0;
    flex-grow: 0;
}

.pointul li {
    display: list-item;
    list-style-type: disc;
    margin-left: 30px;
    padding: 4px 0;
    line-height: normal;
}

/* Totals — inline editable row (Proposed Sale Price) */
.totals-edit-group {
    flex-wrap: nowrap;
    width: auto;
    align-items: center;
}

.totals-edit-group .form-control-sm {
    width: 120px;
    min-width: 90px;
    text-align: right;
}

.totals-confirm {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    min-width: 34px;
    height: 34px;
    margin-left: 6px;
    border: 1px solid var(--cardborder);
    border-radius: 6px;
    color: var(--green);
    font-size: 14px;
}

.totals-confirm:hover {
    border-color: var(--green);
    color: var(--green);
}

/* Comparable properties */
.comparable-card {

    border-radius: 12px;
    padding: 12px;
    background: #EEF2F8;
}

.comparable-card+.comparable-card {
    margin-top: 16px;
}

.comparable-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 16px;
}

.comparable-card-title {
    font-weight: 700;
    color: var(--navyblue);
}

.comparable-remove {
    color: var(--pink);
    font-weight: 600;
    font-size: 14px;
}

.comparable-remove:hover {
    color: var(--pink);
    text-decoration: underline;
}

/* Exit strategy — numbered inputs */
.exit-strategy-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.exit-strategy-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.exit-strategy-num {
    font-weight: 700;
    color: var(--navyblue);
    min-width: 18px;
}

.exit-strategy-row .form-control {
    flex: 1;
}

/* Documents */
.doc-dropzone {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    text-align: center;
    width: 100%;
    padding: 40px 20px;
    border: 2px dashed #D4DDED;
    border-radius: 12px;
    background: #F7F9FB;
    cursor: pointer;
    margin-bottom: 20px;
}

.doc-dropzone:hover {
    border-color: var(--navyblue);
}

.doc-dropzone-ico {
    font-size: 30px;
    color: var(--navyblue);
    margin-bottom: 6px;
}

.doc-dropzone-title {
    font-weight: 700;
    color: var(--navyblue);
}

.doc-filters {
    display: flex;
    flex-wrap: nowrap;
    white-space: nowrap;
    gap: 8px;
    margin-bottom: 20px;
    overflow: auto;
}

.doc-chip {
    border: 1px solid var(--cardborder);
    border-radius: 8px;
    background: #fff;
    color: var(--darkgrey);
    font-size: 14px;
    font-weight: 600;
    padding: 8px 16px;
    white-space: nowrap;
}

.doc-chip:hover {
    border-color: var(--navyblue);
}

.doc-chip.active {
    background: var(--navyblue);
    color: #fff;
    border-color: var(--navyblue);
}

.doc-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.doc-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    border: 1px solid var(--cardborder);
    border-radius: 10px;
    padding: 12px 16px;
    background-color: #fff;
}

.doc-item-info {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.doc-item-ico {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    min-width: 38px;
    height: 38px;
    border-radius: 8px;
    background: #F7F9FB;
    color: var(--navyblue);
    font-size: 16px;
}

.doc-item-ico img {
    width: 100%;
    height: 100%;
    border-radius: 8px;
    object-fit: cover;
    display: block;
}

.doc-item-name {
    display: block;
    font-weight: 700;
    color: var(--navyblue);
    word-break: break-word;
    line-height: normal;
}

.doc-item-meta {
    display: block;
    font-size: 13px;
    color: var(--darkgrey);
    padding-top: 4px;
}

.doc-item-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.doc-item-actions .btn-sm {
    font-size: 13px;
    min-height: 24px;
    padding: 5px 10px;
    border-radius: 6px;
}

.uploaddropzone {
    position: relative;
}

.uploaddropzone input[type=file] {
    position: absolute;
    opacity: 0;
    visibility: hidden;
    width: 1px;
    height: 1px;
}

.doc-dropzone span {
    line-height: normal;
}

.costwithsome span {
    flex-grow: 1;
}

/* =============================================
   Deal Secured — topbar progress
   ============================================= */
.feaso-progressbox {
    display: inline-flex;
    align-items: center;
}

.deal-progress {
    display: flex;
    align-items: center;
    gap: 8px;
}

.deal-progress-ring {
    --value: 11;
    position: relative;
    width: 32px;
    height: 32px;
    min-width: 32px;
    border-radius: 50%;
    background: conic-gradient(var(--pink) calc(var(--value) * 1%), #E9ECF2 0);
}

.deal-progress-ring::before {
    content: "";
    position: absolute;
    top: 4px;
    right: 4px;
    bottom: 4px;
    left: 4px;
    background: #fff;
    border-radius: 50%;
}

.deal-progress-text {
    line-height: 1.35;
}

.deal-progress-text span {
    display: block;
    font-size: 11px;
    color: var(--darkgrey);
}

.deal-progress-text strong {
    color: var(--navyblue);
    font-weight: 700;
}


/* =============================================
   Deal Secured — upcoming tasks
   ============================================= */
.upcoming-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.upcoming-viewall {
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
}

.upcoming-viewall:hover {
    text-decoration: underline;
}

.upcoming-list {
    display: block;
}

.upcoming-row {
    display: flex;
    align-items: start;
    gap: 16px;
    padding: 14px 0;
    border-top: 1px solid #EEF0F4;
}

.upcoming-row:first-child {
    border-top: 0;
}

.upcoming-date {
    font-size: 13px;
    font-weight: 600;
    color: var(--darkgrey);
    min-width: 92px;
}

.upcoming-main {
    flex: 1 1 auto;
    min-width: 0;
}

.upcoming-title {
    display: block;
    font-weight: 700;
    color: var(--navyblue);
    padding-bottom: 6px;
    display: block;
}

.upcoming-sub {
    display: block;
    font-size: 12px;
    color: var(--darkgrey);
}

.advisetext {
    display: block;
    width: 100%;
    margin-top: 5px;
    font-size: 12px;
    color: #98A2B5;
    font-style: italic;
}

.hrline {
    background-color: #DEDEDE;
    opacity: 1;
}

.numberol li {
    display: list-item;
    line-height: normal;
    list-style-type: auto;
}

.numberol li+li {
    margin-top: 10px;
}

/* =============================================
   Task Management — task list
   ============================================= */
.task-item {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    border: 1px solid var(--cardborder);
    border-radius: 6px;
    padding: 10px;
    margin-bottom: 8px;
    background: #F7F9FB;
}

.task-item-main {
    display: inline-flex;
    flex-direction: column;
    gap: 4px;
    flex-grow: 1;
}

.task-item:last-child {
    margin-bottom: 0;
}

.task-item-date {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--darkgrey);
    margin-bottom: 2px;
}

.task-item-title {
    display: block;
    font-weight: 700;
    color: var(--navyblue);
    line-height: normal;
}

.task-item-sub {
    display: block;
    font-size: 12px;
    color: var(--darkgrey);
    margin-top: 2px;
}

.task-item-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
    flex-shrink: 0;
}

.task-status {
    width: auto;
    border: 0;
    background-color: rgba(0, 0, 0, 0.05);
    color: var(--darkgrey);
    font-size: 14px;
    font-weight: 600;

    box-shadow: none !important;
    cursor: pointer;
}

.task-item-actions select option {
    color: #000;
}

.task-status.is-notstarted {
    color: var(--darkgrey);
}

.task-status.is-progress {
    color: #B26A00;
}

.task-status.is-complete {
    color: var(--green);
}



.kpicard {
    background-color: #fff;
    padding: 10px 24px;
    border-bottom: solid 1px var(--cardborder);
    display: flex;
    margin: -24px -24px 0 -24px;
    position: sticky;
    top: 71px;
    z-index: 3;
    gap: 10px;
    overflow: auto;
    flex-wrap: nowrap;
}

.deal-card .deal-progress {
    flex-direction: column;
    padding-top: 10px;
}

.deal-card .deal-progress-head {
    margin-bottom: 0;
    width: 100%;
}

.app-topbar-right .topbar-stat {
    padding: 0;
    border: 0;
    border-radius: 0;
    text-align: center;
    padding-right: 10px;
    padding-left: 5px;
    border-right: solid 1px var(--cardborder);
}

.feaso-detail-nav {
    min-height: calc(100vh - 71px);
}

.hero-states .hero-stat-item {
    padding: 10px;
    background-color: #fff;
    border: solid 1px var(--cardborder);
    border-radius: 14px;
}

/* Prose styles for admin/editor content */
.singlepage {
    color: var(--darkgrey);
}

.singlepage> :first-child {
    margin-top: 0;
}

.singlepage> :last-child {
    margin-bottom: 0;
}

.singlepage h1,
.singlepage h2,
.singlepage h3,
.singlepage h4,
.singlepage h5,
.singlepage h6 {
    color: var(--navyblue);
    font-weight: 700;
    line-height: 1.3;
    margin: 1.6rem 0 0.75rem;
}

.singlepage h1 {
    font-size: 30px;
}

.singlepage h2 {
    font-size: 26px;
}

.singlepage h3 {
    font-size: 22px;
}

.singlepage h4 {
    font-size: 19px;
}

.singlepage h5 {
    font-size: 17px;
}

.singlepage h6 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.singlepage p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

.singlepage a {
    color: var(--pink);
    text-decoration: underline;
}

.singlepage a:hover {
    color: var(--navyblue);
}

.singlepage strong,
.singlepage b {
    font-weight: 700;
    color: var(--navyblue);
}

.singlepage img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

.singlepage hr {
    margin: 1.5rem 0;
}

.singlepage blockquote {
    margin: 1.25rem 0;
    padding: 12px 18px;
    border-left: 4px solid var(--pink);
    background: var(--lightgrey);
    color: var(--navyblue);
    font-style: italic;
    border-radius: 0 8px 8px 0;
}

.singlepage ul,
.singlepage ol {
    padding-left: 25px;
    margin-bottom: 1rem;
}

/* markers set on the <li> to beat the global `li { list-style: none }` reset */
.singlepage li {
    display: list-item;
    line-height: 1.7;
}

.singlepage ol>li {
    list-style-type: decimal;
}
.singlepage ol[type="a"]>li {
    list-style-type: lower-alpha;
}
.singlepage ol[type="a"]>li::marker {
     content: "(" counter(list-item, lower-alpha) ") ";
}

.singlepage ol[type="I"]>li {
    list-style-type: lower-roman;
}
.singlepage ol[type="I"]>li::marker {
        content: "(" counter(list-item, lower-roman) ") ";
}
    
/* 1, 2, 3 */
.singlepage ul>li {
    list-style-type: disc;
}

/* • */
.singlepage ul ul>li {
    list-style-type: circle;
}

/* ◦ */
.singlepage ul ul ul>li {
    list-style-type: square;
}

/* ▪ */
.singlepage ol ol>li {
    list-style-type: lower-alpha;
}

/* a, b, c */
.singlepage ol ol ol>li,
.singlepage ul ul ul ol>li {
    list-style-type: lower-roman;
}

/* i, ii, iii — 3rd level */
.singlepage li+li {
    margin-top: 6px;
}

.singlepage li>ul,
.singlepage li>ol {
    margin-top: 6px;
    margin-bottom: 0;
}

.sameinputheight {
    position: relative;
}

.sameinputheight i {
    position: absolute;
    left: 14px;
    top: 15px;
    z-index: 2;
}

.sameinputheight .form-control {
    padding-left: 40px;
}

.categorieslist a {
    color: var(--naveblue);
}

.categorieslist a:hover {
    color: var(--pink);
}

.bloglistpage {
    line-height: normal;
}

/* Blog cards + recent posts */
.blog-card h6,
.blog-card h3,
.blog-card h5 {
    transition: color 0.15s ease;
}

.blog-card:hover h6,
.blog-card:hover h3,
.blog-card:hover h5 {
    color: var(--pink);
}

.blog-card-img {
    width: 100%;
    height: 210px;
    object-fit: cover;
}

/* Clamp blog excerpt to 2 lines then ellipsis */
.blog-card .card-body p {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-recent-img {
    width: 68px;
    height: 56px;
    object-fit: cover;
    border-radius: 6px;
    flex-shrink: 0;
}

.blog-recent-title {
    transition: color 0.15s ease;
}

.blog-recent-item:hover .blog-recent-title {
    color: var(--pink);
}

.related-articles .card-body h6+span.text-12 {
    margin-top: 10px;
    display: block;
}

/* Blog detail breadcrumb */
.blog-breadcrumb {
    --bs-breadcrumb-divider: '>';
    font-size: 14px;
}

.blog-breadcrumb a {
    color: var(--darkgrey);
}

.blog-breadcrumb a:hover {
    color: var(--pink);
}

.blog-breadcrumb .breadcrumb-item.active {
    color: var(--navyblue);
    font-weight: 600;
}

.reno-tablewrap table td .form-control-sm {
    font-weight: 500;
    font-size: 14px;
}

.maincontainer.minleftsidebar {
    max-width: calc(100% - 220px);
}

.renodates {
    display: flex;
    align-items: center;
    gap: 22px;
}

.renod {
    display: inline-flex;
    flex-direction: column;
    gap: 5px;
}

.renod span {
    text-transform: uppercase;
    color: var(--darkgrey);
    font-size: 11px;
    font-weight: normal;
}

.renod strong {
    font-size: 18px;
    font-weight: 500;
}

.insurancechecklist {
    max-height: 75vh;
    overflow-x: hidden;
    overflow-y: auto;
}

.summaryboxx {
    border-radius: 12px;
}

.soldpricemaxinput .input-group-text {
    height: 46px;
    font-size: 20px;
}

.soldpricemaxinput .form-control {
    font-size: 20px;
}

.propertydealimage {
    width: 80px;
    height: 80px;
    border-radius: 14px;
    min-width: 80px;
    display: inline-block;
}

.soldpropertyinf {
    line-height: normal;
}

.locationicon {
    width: 12px;
    height: 12px;
    min-width: 12px;
    background: url(../images/locationicon.svg) center no-repeat;
    display: inline-block;
}

.sqicon {
    width: 12px;
    height: 12px;
    min-width: 12px;
    background: url(../images/sqicon.svg) center no-repeat;
    display: inline-block;
}

.soldpropertyinf .d-flex i {
    position: relative;
    top: 2px;
}

.pipeline-col-body .deal-card .deal-prices .deal-price-box {
    padding-top: 6px;
    padding-bottom: 6px;
}

.pipeline-col-body .deal-card .deal-prices .deal-price-box label {
    margin-bottom: 2px;
}


.deal-process-steps .step-label {
    white-space: nowrap;
}

.stepsrightcontent {
    flex-grow: 1;
    width: 100%;
}

.stepsrightcontent .card {
    box-shadow: 0 4px 40px rgba(0, 0, 0, 0.08);
}




/*.modal-dealcontent{ flex-grow: 1; overflow: auto; }*/
.stepsrightcontent .card .card-body {
    height: 80vh;
    max-height: 1000px;
}

.stepsrightcontent .card .card-body .signup-step-pane {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.dealprocessbuttons {
    display: flex;
    gap: 15px;
}

.strategycheck {
    display: flex;
    gap: 10px;
    width: 100%;
}

.strategycheck .strategyoption {
    position: relative;
    flex-grow: 1;
    display: inline-block;
}

.strategycheck .strategyoption input[type=radio] {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    visibility: hidden;
}

.strategycheck .strategyoption label {
    display: inline-flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    padding: 10px;
    border: solid 1px var(--cardborder);
    font-size: 14px;
    font-weight: 500;
    background: #fff;
    border-radius: 8px;
    cursor: pointer;
}

.strategycheck .strategyoption label:hover {
    border-color: var(--navyblue);
}

.strategycheck .strategyoption input[type=radio]:checked+label {
    background: var(--navyblue);
    color: #fff;
    cursor: default;
    border-color: var(--navyblue);
}

.calculatelink {
    font-size: 10px;
    text-decoration: underline;
    color: var(--darkgrey);
}

.addmoremain {
    background-color: #EEF2F8;
    border-radius: 10px;
    padding: 10px;
    width: 100%;
    flex-direction: column;
    display: flex;
    gap: 10px;
}

.addmoremain_row {
    width: 100%;
    background-color: #fff;
    border-radius: 10px;
    padding: 10px;
    display: block;
}

.removethis {
    font-size: 13px;
    color: var(--pink);
}

.removethis:hover {
    text-decoration: underline;
}

.addmoremain .reno-add-btn {
    padding-top: 12px;
    padding-bottom: 12px;
}

input[type=date].form-control {
    -webkit-appearance: auto;
    -moz-appearance: auto;
    appearance: auto;
}

.sepratesection {
    display: flex;
    width: 100%;
    gap: 10px;
    align-items: center;
    font-size: 14px;
    color: #888888;
    font-weight: 600;
}

.sepratesection:after {
    content: "";
    flex-grow: 1;
    height: 1px;
    background: #DEDEDE;
}

.setminh {
    flex-grow: 1;
    overflow-y: auto;
    overflow-x: hidden;
}



.wpcf7-not-valid-tip {
    color: #dc3232;
    font-size: 14px;
    margin-top: 3px;
    font-weight: normal;
    display: block;
}

.wpcf7-response-output {
    margin: 10px 0 0 0;
    border-radius: 10px;
    padding: 12px;
    font-size: 14px;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
    background-color: #fff0c7;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output {
    border-color: #c8102e;
}

.uploadedlogo {
    width: 120px;
    height: 120px;
    position: relative;
    border-radius: 10px;
    border: solid 1px var(--cardborder);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.uploadedlogo img {
    max-width: 100%;
    max-height: 100%;
    display: block;
    object-fit: contain;
}

.deleteuploadedlogo {
    position: absolute;
    z-index: 2;
    top: -10px;
    right: -10px;
    width: 26px;
    height: 26px;
    border: solid 1px #ddd;
    border-radius: 50px;
    background-color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--pink);
    font-size: 14px;
    cursor: pointer;
}

.cancelplanbutton {
    display: inline-block;
    font-size: 12px;
    background: transparent;
    color: #999;
    padding: 10px 0;
}

.cancelplanbutton:hover {
    color: #E62225;
    text-decoration: underline;
}

.search-inputtext {
    width: 220px;
    display: inline-block;
    min-width: 220px;
    position: relative;
}

.search-inputtext i {
    position: absolute;
    color: var(--darkgrey);
    font-size: 14px;
    top: 10px;
    left: 10px;
    z-index: 1;
    pointer-events: none;
}

.search-inputtext .searchinpu {
    opacity: 1;
    box-shadow: none;
    outline: none;
    border: solid 1px #E8ECF2;
    border-radius: 10px;
    background-color: #F7F9FB;
    font-size: 14px;
    font-weight: 400;
    width: 100%;
    height: 34px;
    padding: 0 10px 0 30px;
}

.search-inputtext .searchinpu:focus {
    border-color: #000;
    background-color: #fff;
}

.search-inputtext .searchinpu::-webkit-input-placeholder {
    opacity: 1;
    color: #777777;
}

.search-inputtext .searchinpu::-moz-placeholder {
    opacity: 1;
    color: #777777;
}

.search-inputtext .searchinpu:-ms-input-placeholder {
    opacity: 1;
    color: #777777;
}

.search-inputtext .searchinpu:-moz-placeholder {
    opacity: 1;
    color: #777777;
}

.topbar-stats {
    border-left: solid 1px var(--cardborder);
    padding-left: 5px;
}