﻿/* ==========================================================================
   planCardsCDL Plan Cards CDL Component
   Matches mockup: clean white cards, 2-col grid, dark-navy compare footer,
   slide-in filter modal.
   ========================================================================== */

/* --------------------------------------------------------------------------
   Hidden-attribute guard
   -------------------------------------------------------------------------- */
.cmp-plan-cards-cdl__loading[hidden],
.cmp-plan-cards-cdl__error[hidden],
.cmp-plan-cards-cdl__grid[hidden],
.cmp-plan-cards-cdl__compare-footer[hidden],
.cmp-plan-cards-cdl__filter-modal[hidden],
.cmp-plan-cards-cdl__cart-modal[hidden] {
    display: none !important;
}

/* --------------------------------------------------------------------------
   Root
   -------------------------------------------------------------------------- */
.cmp-plan-cards-cdl {
    position: relative;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* --------------------------------------------------------------------------
   Controls bar
   -------------------------------------------------------------------------- */
.cmp-plan-cards-cdl__controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem;
}

.cmp-plan-cards-cdl__filter-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: none;
    border: none;
    cursor: pointer;
    color: #0071BC;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0.4rem 0.6rem;
    border-radius: 6px;
    transition: background 0.15s;
}

.cmp-plan-cards-cdl__filter-btn:hover { background: #e8f0f9; }

/* --------------------------------------------------------------------------
   Loading
   -------------------------------------------------------------------------- */
.cmp-plan-cards-cdl__loading {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 2rem;
    color: #666;
}

.cmp-plan-cards-cdl__spinner {
    display: inline-block;
    width: 1.25rem;
    height: 1.25rem;
    border: 2px solid #d0d0d0;
    border-top-color: #0071BC;
    border-radius: 50%;
    animation: planCardsCDL-spin 0.8s linear infinite;
}

@keyframes planCardsCDL-spin { to { transform: rotate(360deg); } }

/* --------------------------------------------------------------------------
   Error
   -------------------------------------------------------------------------- */
.cmp-plan-cards-cdl__error {
    padding: 1.5rem;
    background: #fff3f3;
    border: 1px solid #e0b4b4;
    border-radius: 8px;
    color: #c00;
}

/* --------------------------------------------------------------------------
   2-column grid
   -------------------------------------------------------------------------- */
.cmp-plan-cards-cdl__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    padding: 1rem;
    margin: 0 auto;
    max-width: 900px; /* Adjust as needed for your design */
}

.cmp-plan-cards-cdl__no-results {
    grid-column: 1 / -1;
    text-align: center;
    color: #666;
    padding: 2rem 0;
    font-size: 0.95rem;
}

@media (max-width: 767px) {
    .cmp-plan-cards-cdl__grid { grid-template-columns: 1fr; }
}

/* --------------------------------------------------------------------------
   Card
   -------------------------------------------------------------------------- */
.cmp-plan-cards-cdl__card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 1px 4px rgba(0,0,0,.07);
    transition: box-shadow 0.2s ease;
}

.cmp-plan-cards-cdl__card:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,.12);
}

/* --------------------------------------------------------------------------
   Card header plan name only
   -------------------------------------------------------------------------- */
.cmp-plan-cards-cdl__card-header {
    padding: 1.25rem 1.25rem 0;
}

.cmp-plan-cards-cdl__plan-name {
    margin: 0;
    font-size: 24px;
    font-weight: 600 !important;
    color: var(--core-chicago-black-000000, #000);;
    line-height: 1.3;
}

/* --------------------------------------------------------------------------
   Card body
   -------------------------------------------------------------------------- */
.cmp-plan-cards-cdl__card-body {
    flex: 1;
    padding: 0.75rem 1.25rem 1rem;
    display: flex;
    flex-direction: column;
}

.cmp-plan-cards-cdl__row--premium {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 0.6rem 0 0.5rem;
    border-bottom: 1px solid #f3f4f6;
    margin-bottom: 0.4rem;
}

.cmp-plan-cards-cdl__row--premium .cmp-plan-cards-cdl__label {
    font-size: 0.875rem;
    color: #000;
    font-family: Fieldwork !important;
}

.cmp-plan-cards-cdl__row--premium .cmp-plan-cards-cdl__value {
    font-size: 1rem;
    font-weight: 700;
    color: #000;

}

.cmp-plan-cards-cdl__section-heading {
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #434345;
    margin: 0.75rem 0 0.2rem;
    font-family: Fieldwork !important;
}

.cmp-plan-cards-cdl__row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 0.1rem 0;
}

.cmp-plan-cards-cdl__label { font-size: 0.875rem; color: #000; font-family: Fieldwork !important;}

.cmp-plan-cards-cdl__value {
    font-size: 0.875rem;
    font-weight: 600;
    color: #111827;
    text-align: right;
}

.cmp-plan-cards-cdl__old-price {
    color: #9ca3af;
    font-weight: 400;
    font-size: 0.8rem;
    margin-right: 0.3rem;
    text-decoration: line-through;
}

.cmp-plan-cards-cdl__new-price { color: #111827; }

/* --------------------------------------------------------------------------
   View details link
   -------------------------------------------------------------------------- */
.cmp-plan-cards-cdl__view-details {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    margin-top: 0.75rem;
    color: #0071BC;
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.15s;
}

.cmp-plan-cards-cdl__view-details:hover { color: #004080; }
.cmp-plan-cards-cdl__view-details-text { text-decoration: underline;font-family: Fieldwork  }
.cmp-plan-cards-cdl__view-details:hover .cmp-plan-cards-cdl__view-details-text { text-decoration: underline; }
.cmp-plan-cards-cdl__view-details svg  { flex-shrink: 0; }
.cmp-plan-cards-cdl__view-details img { flex-shrink: 0; filter: invert(23%) sepia(89%) saturate(1486%) hue-rotate(200deg) brightness(100%) contrast(104%); }

/* --------------------------------------------------------------------------
   Benefit highlights icon grid
   -------------------------------------------------------------------------- */
.cmp-plan-cards-cdl__benefit-highlights {
    margin-top: 0.85rem;
    background: var(--Supportive-Detroit-F7F7F7, #F7F7F7);;
    border-radius: 16px;
    padding: 0.85rem 0.85rem 0.5rem;
}

.cmp-plan-cards-cdl__benefit-heading {
    font-size: 0.68rem;
    font-weight: 300;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #434345;
    margin-bottom: 0.65rem;
    font-family: Fieldwork !important;
}

.cmp-plan-cards-cdl__benefit-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem 0.95rem;
}

.cmp-plan-cards-cdl__benefit-item {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    padding-bottom: 0.35rem;
}

.cmp-plan-cards-cdl__benefit-icon { line-height: 0; }
.cmp-plan-cards-cdl__benefit-icon svg { width: 32px; height: 32px; }

.cmp-plan-cards-cdl__benefit-text {
    font-size: 0.78rem;
    color: #374151;
    line-height: 1.35;
    font-family: Fieldwork !important;
}

.cmp-plan-cards-cdl__benefit-value--money {
    font-weight: 700 !important;
}

/* --------------------------------------------------------------------------
   Card footer
   -------------------------------------------------------------------------- */
.cmp-plan-cards-cdl__card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--supportive-palm-springs-web-fbf-9-f-7, #fbf9f7);;
    padding: 0.85rem 1.25rem;
}

.cmp-plan-cards-cdl__compare-label {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.875rem;
    color: #000;
    font-family: Fieldwork !important;
    font-size: 18px !important;
    cursor: pointer;
    user-select: none;
}

.cmp-plan-cards-cdl__compare-checkbox {
    width: 1rem;
    height: 1rem;
    cursor: pointer;
    accent-color: #0071BC;
}

.cmp-plan-cards-cdl__select-btn {
    display: inline-block;
    padding: 0.45rem 1.25rem;
    background: transparent;
    color: #0071BC;
    font-size: 0.875rem;
    font-weight: 600;
    border: 2px solid #0071BC;
    border-radius: 999px;
    text-decoration: none;
    transition: background 0.15s, color 0.15s;
    white-space: nowrap;
    cursor: pointer;
    font-family: Fieldwork;
    font-size: 18px;
}

.cmp-plan-cards-cdl__select-btn:hover,
.cmp-plan-cards-cdl__select-btn:focus {
    background: #003b5c;
    border-color: #003b5c;
    color: #fff;
    outline: none;
    text-decoration: none;
}

.cmp-plan-cards-cdl__select-btn--selected {
    background: #0071BC;
    border-color: #0071BC;
    color: #fff;
    outline: none;
    text-decoration: none;
}

/* --------------------------------------------------------------------------
   Sticky compare footer  dark navy
   -------------------------------------------------------------------------- */
.cmp-plan-cards-cdl__compare-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 100;
    background: var(--Supportive-Miami-1F688C, #1F688C);
    padding: 32px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    gap: 1rem;
    }

.cmp-plan-cards-cdl__compare-footer-cards {
    display: flex;
    gap: 0.75rem;
    flex: 1;
    justify-content: center;
}

.cmp-plan-cards-cdl__footer-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    background: #ffffff;
    border-radius: 6px;
    padding: 0.5rem 0.85rem;
    flex: 1;
    min-width: 140px;
    max-width: 220px;
}

.cmp-plan-cards-cdl__footer-plan-name {
    font-size: 0.8rem;
    font-weight: 600;
    color: #111827;
    flex: 1;
}

.cmp-plan-cards-cdl__footer-remove {
    background: none;
    border: none;
    cursor: pointer;
    color: #6b7280;
    padding: 0.1rem;
    line-height: 0;
    flex-shrink: 0;
}

.cmp-plan-cards-cdl__footer-remove:hover { color: #111827; }

.cmp-plan-cards-cdl__footer-empty {
    flex: 1;
    min-width: 140px;
    max-width: 220px;
    height: 2.35rem;
    background: #fff3;
    border: 2px dashed var(--core-seattle-white-ffffff, #FFF);
    border-radius: 16px;
    height: 3.35rem;
}

.cmp-plan-cards-cdl__compare-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
}

.cmp-plan-cards-cdl__compare-btn {
    padding: 0.55rem 1.5rem;
    background: #ffffff;
    color: #1B3A5C;
    font-size: 0.875rem;
    font-weight: 700;
    border: none;
    border-radius: 999px;
    cursor: not-allowed;
    opacity: 0.45;
    white-space: nowrap;
    transition: opacity 0.15s;
}

.cmp-plan-cards-cdl__compare-btn--enabled { cursor: pointer; opacity: 1; }
.cmp-plan-cards-cdl__compare-btn--enabled:hover { background: #e8f0f9; }

.cmp-plan-cards-cdl__compare-cancel {
    background: none;
    border: none;
    color: #ffff;
    font-size: 0.8rem;
    cursor: pointer;
    text-decoration: underline;
    padding: 0;
}

.cmp-plan-cards-cdl__compare-cancel:hover { color: #bfdbfe; }

/* --------------------------------------------------------------------------
   Filter & sort modal right-side panel
   -------------------------------------------------------------------------- */
.cmp-plan-cards-cdl__filter-modal {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.cmp-plan-cards-cdl__filter-modal.is-open {
    opacity: 1;
    pointer-events: auto;
    z-index: 1045;
}

.cmp-plan-cards-cdl__filter-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.35);
    cursor: pointer;
}

.cmp-plan-cards-cdl__filter-panel {
    position: relative;
    z-index: 1;
    background: #ffffff;
    width: 460px;
    max-width: calc(100vw - 64px);
    height: calc(100vh - 64px);
    height: calc(100dvh - 64px);
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
    box-shadow: -4px 0 24px rgba(0,0,0,.15);
    border-radius: 12px;
    margin: 32px;
    overflow: hidden;
    will-change: transform;
    transform: translate3d(100%, 0, 0);
    transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.cmp-plan-cards-cdl__filter-modal.is-open .cmp-plan-cards-cdl__filter-panel {
    transform: translate3d(0, 0, 0);
}

@media (max-width: 480px) {
    .cmp-plan-cards-cdl__filter-panel {
        width: calc(100vw - 64px);
        max-width: calc(100vw - 64px);
        border-radius: 12px;
        padding: 1rem;
    }
    .cmp-plan-cards-cdl__filter-footer {
        padding-top: 1rem;
    }
    .cmp-plan-cards-cdl__filter-apply-btn,
    .cmp-plan-cards-cdl__filter-cancel-btn {
        padding: 0.45rem 1rem;
        font-size: 0.85rem;
    }
}

.cmp-plan-cards-cdl__filter-header {
    display: flex;
    align-items: center;
    justify-content: right;
    margin-bottom: 1.5rem;
}

.cmp-plan-cards-cdl__filter-title {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 700 !important;
    color: #111827;
}

.cmp-plan-cards-cdl__filter-close {
    background: none;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #374151;
    font-size: 1rem;
    line-height: 1;
}

.cmp-plan-cards-cdl__filter-close:hover { background: #f3f4f6; }

.cmp-plan-cards-cdl__filter-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    min-height: 0;
}

.cmp-plan-cards-cdl__filter-section-heading {
    margin-bottom: 16px !important;
    font-family: Fieldwork, sans-serif;
    font-size: 14px;
    font-style: normal !important;
    font-weight: 600 !important;
    line-height: 20px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.cmp-plan-cards-cdl__filter-select-wrap {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.cmp-plan-cards-cdl__filter-select-label {
    font-size: 0.875rem;
    color: #374151;
}

.cmp-plan-cards-cdl__filter-select {
    appearance: none;
    -webkit-appearance: none;
    background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b7280' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat right .85rem center;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    padding: 0.6rem 2.5rem 0.6rem 0.85rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: #111827;
    cursor: pointer;
}

.cmp-plan-cards-cdl__filter-select:focus {
    outline: none;
    border-color: #0071BC;
    box-shadow: 0 0 0 3px rgba(0,93,170,.15);
}

.cmp-plan-cards-cdl__filter-footer {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    padding-top: 1.5rem;
    border-top: 1px solid #f3f4f6;
    margin-top: 1rem;
}

.cmp-plan-cards-cdl__filter-cancel-btn {
    background: none;
    border: none;
    color: #0071BC;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    padding: 0.55rem 1.25rem;
    border-radius: 999px;
    transition: background 0.15s;
}

.cmp-plan-cards-cdl__filter-cancel-btn:hover { background: #e8f0f9; }

.cmp-plan-cards-cdl__filter-apply-btn {
    background: #0071BC;
    color: #fff;
    border: none;
    border-radius: 999px;
    padding: 0.55rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.15s;
    height: 56px;
    padding: 0 32px !important;
}

.cmp-plan-cards-cdl__filter-apply-btn:hover { background: #004080; }

/* --------------------------------------------------------------------------
   Mobile
   -------------------------------------------------------------------------- */
@media (max-width: 1023px) {
    .cmp-plan-cards-cdl__compare-footer { flex-direction: column; align-items: stretch; }
    .cmp-plan-cards-cdl__compare-footer-cards { flex-wrap: wrap; }
}

/* --------------------------------------------------------------------------
   Compare Tray
   -------------------------------------------------------------------------- */
.cmp-plan-cards-cdl__compare-tray {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #0071BC;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

/* --------------------------------------------------------------------------
   Cart Modal
   -------------------------------------------------------------------------- */
.cmp-plan-cards-cdl__cart-modal {
    position: fixed;
    inset: 0;
    z-index: 300;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.cmp-plan-cards-cdl__cart-modal.is-open {
    opacity: 1;
    pointer-events: auto;
    z-index: 1045;
}

.cmp-plan-cards-cdl__cart-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    cursor: pointer;
}

.cmp-plan-cards-cdl__cart-content {
    position: relative;
    z-index: 1;
    background: #ffffff;
    width: 460px;
    max-width: calc(100vw - 64px);
    height: calc(100vh - 64px);
    height: calc(100dvh - 64px);
    border-radius: 40px;
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    margin: 32px;
    overflow: hidden;
    will-change: transform;
    transform: translate3d(100%, 0, 0);
    transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.cmp-plan-cards-cdl__cart-modal.is-open .cmp-plan-cards-cdl__cart-content {
    transform: translate3d(0, 0, 0);
}

.cmp-plan-cards-cdl__cart-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    border-bottom: 1px solid #e5e7eb;
}

.cmp-plan-cards-cdl__cart-title {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.cmp-plan-cards-cdl__cart-title svg {
    color: #0071BC;
}

.cmp-plan-cards-cdl__cart-remove-btn {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.15s;
}

.cmp-plan-cards-cdl__cart-remove-btn:hover {
    opacity: 0.7;
}

.cmp-plan-cards-cdl__cart-close {
    background: none;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #374151;
    font-size: 1rem;
    line-height: 1;
    transition: background 0.15s;
}

.cmp-plan-cards-cdl__cart-close:hover {
    background: #f3f4f6;
}

.cmp-plan-cards-cdl__cart-body {
    flex: 1;
    padding: 2rem;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    min-height: 0;
    display: flex;
 /* align-items: center; */
    justify-content: center;
}

.medicaltitle-drawer{
    color: var(--Core-Philadelphia-434345, #434345) !important;
    font-weight: 600 !important;
    padding: 0 0 16px;
}
.plan-details-drawer{
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    align-self: stretch;
}
.cmp-plan-cards-cdl__cart-plan-name{
    font-size: 24px !important;
    line-height: 28px !important;
    font-family: Fieldwork !important;
}

.body{
    font-size: 18px !important;
    line-height: 24px !important;
}

.cmp-plan-cards-cdl__cart-call-us
{
    font-family: Fieldwork !important;
    margin: 0 !important;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
    letter-spacing: 0 !important;
    align-self: stretch;
    border-radius: 16px;
    background: #e1fcff;
    gap: 16px;
    padding: 24px 32px;
    align-items: center;
    margin-top: 0;
}

.cmp-plan-cards-cdl__cart-call-us-copy,
.cmp-plan-cards-cdl__cart-call-us-phone,
.cmp-plan-cards-cdl__cart-call-us-hours {
    display: block;
}

.cmp-plan-cards-cdl__cart-call-us-copy {
    margin-bottom: 14px;
}

.cmp-plan-cards-cdl__cart-call-us-phone,
.cmp-plan-cards-cdl__cart-call-us-hours {
    text-align: center;
    font-weight: 400;
    line-height: 1.5;
}

.cmp-plan-cards-cdl__cart-old-premium
{
    color: #9ca3af;
    font-weight: 400 !important;
    font-size: 0.8rem;
    margin-right: 0.3rem;
    text-decoration: line-through;
}

.cmp-plan-cards-cdl__cart-empty {
    text-align: center;
}

.cmp-plan-cards-cdl__cart-empty svg {
    width: 64px;
    height: 64px;
    margin-bottom: 1rem;
}

.cmp-plan-cards-cdl__cart-empty-text {
    margin: 0;
    font-size: 1rem;
    color: #6b7280;
}

.cmp-plan-cards-cdl__cart-footer {
    padding: 1.5rem;
    border-top: 1px solid #e5e7eb;
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.cmp-plan-cards-cdl__cart-close-btn {
    background: #0071BC;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 0.625rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.15s;
}

.cmp-plan-cards-cdl__cart-close-btn:hover {
    background: #004080;
}

@media (max-width: 480px) {
    .cmp-plan-cards-cdl__cart-content {
        width: calc(100vw - 64px);
        max-width: calc(100vw - 64px);
        padding: 0;
    }
}


/* --------------------------------------------------------------

Dropdown for filter section

-------------------------------------------------------------- */

.cmp-plan-cards-cdl__filter-select-container {
  /*display: flex; */
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 16px;
  padding-left: 24px;
  padding-right: 24px;
}

.profile-svg-icon .arrows-iconup {
  display: none;
}

.combobox-container {
  position: relative;
  width: 98%;
   /* border-radius: 16px;*/
    overflow: hidden;
    background: #ffffff;
}

.combobox-container input {
  border-radius: 16px;
  border: 1px solid #B8B9BB;
  background: #FFFFFF;
}

.premium-combobox {
  display: flex;
  width: 100%;
  padding-left: 16px;
  padding-right: 16px;
  padding-top: 21px;
  text-overflow: ellipsis;
  align-items: center;
  gap: 16px;
  align-self: stretch;
  border-radius: 16px;
  box-sizing: border-box;
  border: 3px solid transparent;
  outline: 1px solid #B8B9BB;
  background: #fff;
  color: #000;
  font-feature-settings: "clig" off, "liga" off;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  font-family: Fieldwork;
  height: 64px !important;
  line-height: 64px !important;

  &::selection {
    background: transparent !important;
  }

  &:disabled {
    color: #434345 ! important;

    &~i.search {
      cursor: auto;

      ::ng-deep svg {
        fill: #B8B9BB !important;
      }
    }
  }

  &:has(~ i.search) {
    padding-left: 80px !important;
  }

  &:has(~ i.chevron) {
    padding-right: 48px !important;
  }
}

.compact.combobox {
  height: 48px !important;
  line-height: 48px !important;
  padding-top: 0;

  &::placeholder {
    height: 48px !important;
    line-height: 48px !important;
    font-weight: 300;
    color: #000000;

  }
}

.combobox-disabled {
  display: flex;
  width: 100%;
  padding-left: 16px;
  padding-right: 16px;
  padding-top: 20px;
  align-items: center;
  gap: 16px;
  align-self: stretch;
  border-radius: 16px 16px 16px 16px;
  border: 1px solid #B8B9BB;
  background: ffffff;
  outline: none;
  color: #000000;
  font-feature-settings: "clig" off, "liga" off;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 41px;
}

.combobox-down {
    border-radius: 16px 16px 0 0 !important;
    border-bottom: 0 !important;
    border: 3px solid #162C55 !important;
    outline: 0;
}

.combobox-up {
  border-radius: 0px 0px 16px 16px;
  outline: 1px solid #B8B9BB ! important;
  border: 0px;
}

.combobox:focus {
  outline: 3px solid #0071BC;
  border: 0px;
}

.openup {
  transform: translateY(calc(-100% - 63px));

  &-compact {
    transform: translateY(calc(-100% - 47px));
  }

  border-radius: 16px 16px 0px 0px !important;
}

.form-label {
  color: #000000;
  font-feature-settings: "clig" off, "liga" off;
  letter-spacing: 0;

  /* Body/Body 1 – Light */
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  font-family: Fieldwork;
  line-height: 24px;
  /* 133.333% */
  position: absolute;
  pointer-events: none;
  left: 16px;
  top: 20px;
  margin-bottom: 0px !important;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: calc(100% - 66px);
  -o-text-overflow: ellipsis;
  -ms-text-overflow: ellipsis;
  overflow: hidden;

  &:has(~ i.search) {
    left: 80px !important;
  }
}

.floating {
  color: #0071BC;
  font-feature-settings: "clig" off, "liga" off;

  /* Misc/Small print 1 – Light */
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 20px;
  /* 142.857% */
  top: 10px;
}

.floating-blue {
  color: #0071BC;
  font-feature-settings: "clig" off, "liga" off;

  /* Misc/Small print 1 – Light */
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 20px;
  /* 142.857% */
  top: 10px;
}

.floating-black {
  color: #000000;
  font-feature-settings: "clig" off, "liga" off;

  /* Misc/Small print 1 – Light */
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 20px;
  /* 142.857% */
  top: 10px;
}

.non-floating-black {
  color: #000000;
  ;
  font-feature-settings: "clig" off, "liga" off;

  /* Body/Body 1 – Light */
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  line-height: 24px;
  /* 133.333% */
  position: absolute;
  pointer-events: none;
  left: 16px;
  top: 20px;
}

.label-disabled {
  color: #434345;
  font-feature-settings: "clig" off, "liga" off;

  /* Body/Body 1 – Light */
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  line-height: 24px;
  /* 133.333% */
  position: absolute;
  pointer-events: none;
  left: 16px;
  top: 20px;
}

.combobox-container .combobox:not(:placeholder-shown)+.form-label {
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 20px;
  top: 10px;
}

.chevron {
  position: absolute;
  cursor: pointer;
    right: 0;
    top: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    padding: 0 16px;
  color: #0071BC;
    border-radius: 0 16px 16px 0;
}

.combobox-down ~ .chevron {
    border-radius: 0 16px 0 0;
}

.rotate {
  transform: rotate(180deg);
}

.chevron-disabled {
  color: #B8B9BB;
  cursor: auto;
}

.combobox-list-container {
    display: none;
  position: relative;
  width: 100%;
  z-index: 1000;
}

.cmp-plan-cards-cdl__filter-select-container.is-open .combobox-list-container {
    display: block;
}

.combobox-list-border {
  position: absolute;
  border-radius: 0px 0px 16px 16px;
  background-color: white;
  width: 97%;
  border: 0px;
  outline: 3px solid #000000;
  overflow: hidden;
  margin-left: 1px;
}

.combobox-list {
  list-style: none;
  font-size: 18px;
  padding-left: 0px;
  z-index: 1;
  width: 100%;
  overflow: hidden;
  margin: 0px;
}

.combobox-list li {
  display: flex;
  padding: 19px 16px;
  align-items: flex-start;
  text-align: start;
  justify-content: center;
  flex-direction: column;
  align-self: stretch;
  cursor: pointer;

  &:hover {
    background: #d9fbff ! important;
    font-weight: 600 ! important;
  }

  margin-right: -16px;

  span {
    color: #707275;
    ;
  }
}

.combobox-list li.selected,
.combobox-list li[aria-selected="true"] {
    background: #d9fbff;
    font-weight: 600;
}

.combobox-list li.selected.selected-border-top,
.combobox-list li[aria-selected="true"].selected-border-top {
    border-top: 3px solid #162C55 !important;
}

.combobox-list li.selected.selected-border-bottom,
.combobox-list li[aria-selected="true"].selected-border-bottom {
    border-bottom: 3px solid #162C55 !important;
}