/* Container styles */
.container {
    width: 95%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
}

/* Header style */
.header {
    font-size: 32px;
    color: #155876;
    margin-bottom: 20px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Table Styling */
.rate-table {
    width: 100%;
    margin-top: 20px;
    overflow-x: auto;
    border-radius: 0.125rem;
    background-color: #fff;
    border-collapse: separate;
    border-spacing: 0 1em;
}

/* Table header */
.rate-table th {
    padding: 15px;
    text-align: center;
    /* border: 1px solid #ddd; */
    font-size: 14px;
    background-color: #155876;
    color: #fff;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.rate-table tr {
    box-shadow: 0px 0px 0px 1px #ddd;
}

/* Table data */
.rate-table th,
.rate-table td {
    padding: 15px;
    text-align: center;
    /* border: 1px solid #ddd; */
    font-size: 14px;
    transition: background-color 0.3s ease;
}

.rate-table td.rate-description {
    text-align: left;
}

.rate-table td.rate-description ul {
    margin-left: 5px;
}

.rate-table td.rate-description ul li:before {
    content: '✓';
    color: green;
    font-weight: bold;
    margin-right: 5px;
}


/* Row hover effect */
.rate-table tr:hover {
    background-color: #f9f9f9;
}

/* Status column styling */
.rate-table .status {
    font-size: 18px;
    color: green;
}

/* Pre-qualified column styling */
.rate-table .pre-qualified {
    font-weight: bold;
    color: #4CAF50;
}

.rate-table .pre-disqualified {
    font-weight: bold;
    color: red;
}

#logo_container {
    display: flex;
    align-items: center;
    justify-content: center;

}

#logo_container {
    display: flex;
    align-items: center;
    justify-content: center;

}

#logo_container img {
    width: auto;
    height: 40px;
}

/* Button Styling */
.select-btn {
    color: white;
    padding: 10px 20px;
    border-radius: 0.125rem;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    transition: background-color 0.3s ease;
}

.rate-table tbody {
    counter-reset: row;
}

.rate-table tbody td:first-child {
    position: relative;
}

.rate-table tbody td:first-child:before,
.rate-table tbody td:first-child:after {
    height: 23px;
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    color: #fff;
    top: 10px;
}

.rate-table tbody td:first-child:before {
    counter-increment: row;
    content: counter(row);
    width: 23px;
    left: -23px;
    background: rgb(249 115 22 / var(--tw-bg-opacity));
}

.rate-table tbody tr:first-child td:first-child:after {
    content: "Most Popular";
    text-transform: uppercase;
    width: max-content;
    left: 0;
    padding: 0 10px;
    background: #232434;
}

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

    .rate-table tbody td:first-child:before,
    .rate-table tbody td:first-child:after {
        top: 0;
    }

    .rate-table tbody td:first-child:before {
        left: 0;
    }

    .rate-table tbody td:first-child:first-child:after {
        left: 23px;
    }
}



/* Table on smaller screens */
@media screen and (max-width: 768px) {
    .rate-table {
        font-size: 12px;
    }

    .rate-table th,
    .rate-table td {
        padding: 10px;
    }

    /* Stack table header and data vertically for small screens */
    .rate-table th,
    .rate-table td {
        display: block;
        text-align: left;
        width: 100%;
    }

    .rate-table td {
        margin-bottom: 10px;
    }

    .rate-table th {
        background-color: #f1f1f1;
        color: #333;
        font-weight: bold;
    }
}

/* For very small screens, use a more compact view */
@media screen and (max-width: 480px) {
    .header {
        font-size: 28px;
    }

    .rate-table th,
    .rate-table td {
        padding: 8px;
    }

    .select-btn {
        padding: 8px 16px;
    }
}

#loader {
    width: 200px;
    height: 150px;
    display: block;
    margin: 40px auto 0 auto;
}

#wifi-loader {
    --background: #62abff;
    --front-color: #155876;
    --back-color: #c3c8de;
    --text-color: #414856;
    width: 64px;
    height: 64px;
    border-radius: 50px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

#wifi-loader svg {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
}

#wifi-loader svg circle {
    position: absolute;
    fill: none;
    stroke-width: 6px;
    stroke-linecap: round;
    stroke-linejoin: round;
    transform: rotate(-100deg);
    transform-origin: center;
}

#wifi-loader svg circle.back {
    stroke: var(--back-color);
}

#wifi-loader svg circle.front {
    stroke: var(--front-color);
}

#wifi-loader svg.circle-outer {
    height: 86px;
    width: 86px;
}

#wifi-loader svg.circle-outer circle {
    stroke-dasharray: 62.75 188.25;
}

#wifi-loader svg.circle-outer circle.back {
    animation: circle-outer135 1.8s ease infinite 0.3s;
}

#wifi-loader svg.circle-outer circle.front {
    animation: circle-outer135 1.8s ease infinite 0.15s;
}

#wifi-loader svg.circle-middle {
    height: 60px;
    width: 60px;
}

#wifi-loader svg.circle-middle circle {
    stroke-dasharray: 42.5 127.5;
}

#wifi-loader svg.circle-middle circle.back {
    animation: circle-middle6123 1.8s ease infinite 0.25s;
}

#wifi-loader svg.circle-middle circle.front {
    animation: circle-middle6123 1.8s ease infinite 0.1s;
}

#wifi-loader svg.circle-inner {
    height: 34px;
    width: 34px;
}

#wifi-loader svg.circle-inner circle {
    stroke-dasharray: 22 66;
}

#wifi-loader svg.circle-inner circle.back {
    animation: circle-inner162 1.8s ease infinite 0.2s;
}

#wifi-loader svg.circle-inner circle.front {
    animation: circle-inner162 1.8s ease infinite 0.05s;
}

#wifi-loader .text {
    position: absolute;
    bottom: -40px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-transform: capitalize;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.2px;
}

#wifi-loader .text::before,
#wifi-loader .text::after {
    content: attr(data-text);
}

#wifi-loader .text::before {
    color: var(--text-color);
}

#wifi-loader .text::after {
    color: var(--front-color);
    animation: text-animation76 3.6s ease infinite;
    position: absolute;
    left: 0;
}

@keyframes circle-outer135 {
    0% {
        stroke-dashoffset: 25;
    }

    25% {
        stroke-dashoffset: 0;
    }

    65% {
        stroke-dashoffset: 301;
    }

    80% {
        stroke-dashoffset: 276;
    }

    100% {
        stroke-dashoffset: 276;
    }
}

@keyframes circle-middle6123 {
    0% {
        stroke-dashoffset: 17;
    }

    25% {
        stroke-dashoffset: 0;
    }

    65% {
        stroke-dashoffset: 204;
    }

    80% {
        stroke-dashoffset: 187;
    }

    100% {
        stroke-dashoffset: 187;
    }
}

@keyframes circle-inner162 {
    0% {
        stroke-dashoffset: 9;
    }

    25% {
        stroke-dashoffset: 0;
    }

    65% {
        stroke-dashoffset: 106;
    }

    80% {
        stroke-dashoffset: 97;
    }

    100% {
        stroke-dashoffset: 97;
    }
}

@keyframes text-animation76 {
    0% {
        clip-path: inset(0 100% 0 0);
    }

    50% {
        clip-path: inset(0);
    }

    100% {
        clip-path: inset(0 0 0 100%);
    }
}

/* .pc_view {
    display: unset;
  } */

.mob_view {
    display: none !important;
}

@media only screen and (max-width: 1000px) {
    .pc_view {
        display: none !important;
    }

    .mob_view {
        display: flex !important;
    }
}

.mob_offerwall {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

/* Mobile styles for offer card */
.mob_offer-card {
    display: flex;
    flex-direction: column;
    padding: 15px;
    margin: 10px 0;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 95vw;
    max-width: 450px;
    border: 1px solid #d0d0d0;
}

.logo_content {
    margin-bottom: 10px;
}

.content_content {}

.content_content ul {
    margin-left: 5px;
}

.content_content ul li:before {
    content: '✓';
    color: green;
    font-weight: bold;
    margin-right: 5px;
}

.mob_offer-card img {
    width: 80%;
    height: auto;
    margin: 0 auto 10px auto;
}

.mob_lender-name {
    font-size: 1.5rem;
    font-weight: 500;
    margin: 10px 0;
    text-align: center;
}

.mob_amount,
.mob_term,
.mob_apr,
.mob_monthly-payment {
    font-size: 0.5rem;
    margin-bottom: 5px;
    text-align: left;
}

.mob_amount b,
.mob_term b,
.mob_apr b,
.mob_monthly-payment b {
    font-size: 0.8rem;
}

.mob_status {
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 10px;
}

.mob_select-btn {
    display: block;
    text-align: center;
    padding: 10px;
    color: white;
    border-radius: 0.125rem;
    text-decoration: none;
    font-weight: bold;
}

.mob_select-btn:hover {
    background-color: #45a049;
}