.elementor-40262 .elementor-element.elementor-element-e6e7c14{--display:flex;}.elementor-widget-text-editor{font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );color:var( --e-global-color-text );}.elementor-widget-text-editor.elementor-drop-cap-view-stacked .elementor-drop-cap{background-color:var( --e-global-color-primary );}.elementor-widget-text-editor.elementor-drop-cap-view-framed .elementor-drop-cap, .elementor-widget-text-editor.elementor-drop-cap-view-default .elementor-drop-cap{color:var( --e-global-color-primary );border-color:var( --e-global-color-primary );}.elementor-40262 .elementor-element.elementor-element-33d541e{padding:10px 10px 10px 10px;font-family:"Poppins", Sans-serif;font-weight:400;color:#000000;}.elementor-40262 .elementor-element.elementor-element-edf1889{--display:flex;}.elementor-40262 .elementor-element.elementor-element-9c31940{--spacer-size:50px;}.elementor-40262 .elementor-element.elementor-element-1981227 .wpr-dual-heading-wrap{text-align:center;}.elementor-40262 .elementor-element.elementor-element-1981227 .wpr-dual-title .first{color:#7B7B7B;border-color:#000;font-family:"Roboto", Sans-serif;font-size:32px;font-weight:300;border-style:none;margin-right:0px;}.elementor-40262 .elementor-element.elementor-element-1981227 .wpr-dual-title-wrap{margin-bottom:15px;}.elementor-40262 .elementor-element.elementor-element-1981227 .wpr-dual-title .second{color:#9E5BE5;border-color:#000;font-family:"Roboto", Sans-serif;font-size:32px;font-weight:600;border-style:none;}.elementor-40262 .elementor-element.elementor-element-1981227 .wpr-dual-heading-description{color:#989898;font-family:"Roboto", Sans-serif;font-size:14px;font-weight:400;margin-bottom:15px;}.elementor-40262 .elementor-element.elementor-element-1981227 .wpr-dual-heading-icon-wrap{color:#605BE5;font-size:35px;margin-bottom:10px;}.elementor-40262 .elementor-element.elementor-element-1981227 .wpr-dual-heading-icon-wrap svg{fill:#605BE5;width:35px;}.elementor-40262 .elementor-element.elementor-element-2f6ade2{--display:flex;}/* Start custom CSS for html, class: .elementor-element-43dc131 */@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
    --primary: #4338ca;
    --bg-body: #f8fafc;
    --row-bg: #ffffff;
    --text-main: #1e293b;
    --text-muted: #64748b;
    --color-1: #f59e0b;
    --color-2: #10b981;
    --color-3: #3b82f6;
    --color-4: #ec4899;
    --color-5: #8b5cf6;
    --color-6: #06b6d4;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    -webkit-tap-highlight-color: transparent;
}

body {
    background-color: var(--bg-body);
    font-family: 'Outfit', sans-serif;
    display: flex;
    min-height: 100vh;
}

.table-container {
    width: 100%;
    max-width: 800px;
}

.custom-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 15px;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes iconBounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-3px);
    }
}

.custom-table thead th {
    padding: 18px 25px;
    text-align: left;
    color: #fff;
    font-weight: 700;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    background: #4338ca;
    border-bottom: 2px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    cursor: default;
    animation: fadeInDown 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
    opacity: 0;
}

.custom-table thead th:nth-child(1) {
    animation-delay: 0.1s;
    border-radius: 16px 0 0 16px;
}

.custom-table thead th:nth-child(2) {
    animation-delay: 0.2s;
}

.custom-table thead th:nth-child(3) {
    animation-delay: 0.3s;
    border-radius: 0 16px 16px 0;
}

.custom-table thead th:hover {
    background: #ffffff;
    color: var(--primary);
    box-shadow: 0 5px 15px rgba(67, 56, 202, 0.08);
    transform: translateY(-2px);
    border-bottom-color: var(--primary);
}

.custom-table thead th i {
    margin-right: 8px;
    font-size: 14px;
    color: #fff;
    opacity: 0.7;
    transition: all 0.3s ease;
    display: inline-block;
}

.custom-table thead th:hover i {
    opacity: 1;
    transform: scale(1.2);
    animation: iconBounce 0.6s ease infinite;
    color: #4338ca;
}

.custom-table tbody tr {
    background: var(--row-bg);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.custom-table tbody td {
    padding: 15px;
    vertical-align: middle;
    color: var(--text-main);
}

.custom-table tbody tr td:first-child {
    border-radius: 16px 0 0 16px;
    border-left: 8px solid transparent;
}

.custom-table tbody tr td:last-child {
    border-radius: 0 16px 16px 0;
}

.custom-table tbody tr:nth-child(1) td:first-child {
    border-left-color: var(--color-1);
}

.custom-table tbody tr:nth-child(2) td:first-child {
    border-left-color: var(--color-2);
}

.custom-table tbody tr:nth-child(3) td:first-child {
    border-left-color: var(--color-3);
}

.custom-table tbody tr:nth-child(4) td:first-child {
    border-left-color: var(--color-4);
}

.custom-table tbody tr:nth-child(5) td:first-child {
    border-left-color: var(--color-5);
}

.custom-table tbody tr:nth-child(6) td:first-child {
    border-left-color: var(--color-6);
}

.primary-text {
    font-weight: 700;
    color: var(--primary);
    font-size: 15px;
}

.secondary-text {
    font-size: 13px;
    line-height: 1.6;
}

.badge {
    padding: 8px 16px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    white-space: nowrap;
}

.badge.short {
    background: #fffbeb;
    color: #92400e;
    border: 1px solid #fef3c7;
}

.badge.rec {
    background: #ecfdf5;
    color: #065f46;
    border: 1px solid #d1fae5;
}

.badge.full {
    background: #eff6ff;
    color: #1e40af;
    border: 1px solid #dbeafe;
}

.badge.family {
    background: #fdf2f8;
    color: #9d174d;
    border: 1px solid #fce7f3;
}

.badge.adv {
    background: #f5f3ff;
    color: #5b21b6;
    border: 1px solid #ede9fe;
}

@media (min-width: 769px) {
    .custom-table tbody tr:hover {
        transform: translateY(-5px) scale(1.01);
        box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    }

    .custom-table tbody tr:nth-child(1):hover {
        background-color: var(--color-1);
    }

    .custom-table tbody tr:nth-child(2):hover {
        background-color: var(--color-2);
    }

    .custom-table tbody tr:nth-child(3):hover {
        background-color: var(--color-3);
    }

    .custom-table tbody tr:nth-child(4):hover {
        background-color: var(--color-4);
    }

    .custom-table tbody tr:nth-child(5):hover {
        background-color: var(--color-5);
    }

    .custom-table tbody tr:nth-child(6):hover {
        background-color: var(--color-6);
    }

    .custom-table tbody tr:hover .primary-text,
    .custom-table tbody tr:hover .secondary-text,
    .custom-table tbody tr:hover td {
        color: #ffffff !important;
    }

    .custom-table tbody tr:hover .badge {
        background: rgba(255, 255, 255, 0.2) !important;
        color: #ffffff !important;
        border-color: rgba(255, 255, 255, 0.4) !important;
    }
}

@media (max-width: 769px) {
    body {
        overflow-x: hidden;
    }

    .table-container {
        width: 100%;
        padding: 0;
    }

    .custom-table,
    .custom-table tbody {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        gap: 15px;
        scroll-snap-type: x mandatory;
        padding-bottom: 20px;
        -webkit-overflow-scrolling: touch;
        width: 100%;
    }

    .custom-table tbody::-webkit-scrollbar {
        display: none;
    }

    .custom-table tbody {
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    .custom-table thead {
        display: none;
    }

    .custom-table tbody tr {
        display: block;
        flex: 0 0 85%;
        min-width: 280px;
        max-width: 320px;
        background: #ffffff;
        scroll-snap-align: center;
        border-radius: 20px;
        padding: 10px;
        margin-bottom: 0;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        border: none !important;
        position: relative;
    }

    .custom-table tbody tr:nth-child(1) {
        background-color: var(--color-1);
    }

    .custom-table tbody tr:nth-child(2) {
        background-color: var(--color-2);
    }

    .custom-table tbody tr:nth-child(3) {
        background-color: var(--color-3);
    }

    .custom-table tbody tr:nth-child(4) {
        background-color: var(--color-4);
    }

    .custom-table tbody tr:nth-child(5) {
        background-color: var(--color-5);
    }

    .custom-table tbody tr:nth-child(6) {
        background-color: var(--color-6);
    }

    .custom-table td {
        display: block;
        padding: 8px 0;
        text-align: left;
        border: none !important;
        color: #ffffff !important;
        word-wrap: break-word;
    }

    .custom-table td::before {
        content: attr(data-label);
        display: block;
        font-size: 11px;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 1px;
        color: rgba(255, 255, 255, 0.8);
        margin-bottom: 2px;
    }

    .primary-text {
        font-size: 20px;
        color: #ffffff !important;
        display: block;
        font-weight: 700;
    }

    .secondary-text {
        font-size: 14px;
        color: #ffffff !important;
        line-height: 1.2;
        display: block;
    }

    .badge {
        width: 100%;
        display: flex;
        justify-content: center;
        margin-top: 10px;
        padding: 12px;
        background: rgba(255, 255, 255, 0.2) !important;
        border: 1px solid rgba(255, 255, 255, 0.4) !important;
        color: #ffffff !important;
        font-size: 14px;
        backdrop-filter: blur(5px);
        border-radius: 12px;
    }

    .badge i {
        margin-right: 8px;
    }
}

@media (min-width: 425px) {
    .custom-table tbody tr {
        flex: 0 0 80%;
        min-width: 250px;
        max-width: 300px;
        padding: 10px;
    }

    .badge {
        padding: 10px;
        font-size: 13px;
    }

    .secondary-text {
        font-size: 13px;
    }

    .table-container {
        padding: 10px;
    }
}

@media (min-width: 375px) {
    .custom-table tbody td {
        padding: 10px;
    }

    .secondary-text {
        font-size: 12px;
    }

    .badge {
        padding: 9px;
        font-size: 12px;
    }
}/* End custom CSS */