/* Pricing Card Styles - Demo Financial */
[class^="icon-"],
[class*=" icon-"] {
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    font-family: icomoon !important;
}

.tf-btn-d10 {
    padding: 4px 4px 4px 16px;
    border-radius: 8px;
    background-color: var(--primary-600);
    display: flex;
    align-items: center;
    gap: 16px;
    max-width: max-content;
}

.tf-btn-d10 .text_btn {
    color: var(--white);
    transition: 0.3s;
}

.tf-btn-d10.style-noarrow {
    padding: 12px 24px;
}

.tf-btn-d10.w-full {
    max-width: 100%;
}

.pricing-card-d10 {
    border: 1px solid var(--neu-300);
    padding: 34px 35px;
    border-radius: 20px;
}

.pricing-card-d10 .plan-label {
    padding: 6px 16px;
    border-radius: 999px;
    color: var(--primary-700);
    background-color: var(--d10-bg-2);
    border: 1px solid var(--primary-200);
    width: max-content;
    margin-bottom: 21px;
}

.pricing-card-d10 .title-price {
    color: var(--neu-600);
    margin-bottom: 3px;
}

.pricing-card-d10 .title-price .price {
    color: var(--neu-900);
}

.pricing-card-d10 p {
    color: var(--gray-50);
}

.pricing-card-d10 .top-card {
    margin-bottom: 40px;
    border-bottom: 1px solid #000;
}

.pricing-card-d10 .list-unstyled-d10 {
    margin-bottom: 40px;
}

.pricing-card-d10.active {
    background: linear-gradient(195.05deg, rgb(255, 255, 255) 15.98%, rgb(255, 122, 127) 130.43%);
}

.pricing-card-d10.active .title-price {
    color: var(--black-50);
}

.pricing-card-d10.active p {
    color: var(--black-50);
}

.list-unstyled-d10 .unstyled-item {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.list-unstyled-d10 .unstyled-item:last-child {
    margin-bottom: 0px;
}

.list-unstyled-d10 .unstyled-item .icon {
    width: 24px;
    height: 24px;
    background-color: var(--neu-300);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}

.list-unstyled-d10 .unstyled-item .icon i {
    color: rgb(17, 24, 39);
    font-size: 12px;
}

.list-unstyled-d10 .unstyled-item.style-border-primary-100 .icon {
    background-color: var(--white);
    border: 1px solid var(--primary-100);
}

/* CSS Variables for pricing card */
:root {
    --primary-600: #1A79FF;
    --primary-700: #1565C0;
    --primary-200: #90CAF9;
    --primary-100: #BBDEFB;
    --neu-300: #E0E0E0;
    --neu-600: #757575;
    --neu-900: #212121;
    --gray-50: #9E9E9E;
    --black-50: #424242;
    --white: #FFFFFF;
    --d10-bg-2: #F5F5F5;
}