/* Credit Card Section CSS Start From Here */
.credit-card-section .credit-card-col .elementor-widget-heading {
    margin: 0;
}

/* Credit Card Box CSS */
.credit-card-shortcode .credit-cards .credit-card {
    box-shadow: 0px 0px 14px 0px #00000014;
    border-radius: 12px;
    padding: 32px 32px 24px;
    transition: all .5s ease-in-out;
}

.credit-card-shortcode .credit-cards .credit-card+.credit-card {
    margin-top: 30px;
}

/* Credit Card Header */
.credit-card .credit-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    --gap: 10px;
    margin-bottom: 10px;
}

/* Left Column */
.credit-card-header .cd-head-left-col {
    padding-right: var(--gap);
    width: 50%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    grid-gap: 30px;
}

.cd-head-left-col .credit-card-img {
    width: 100%;
    line-height: 0;
    max-width: 155px;
}

.cd-head-left-col .credit-card-img img {
    width: 100%;
    object-fit: contain;
    max-height: 100px;
}

.cd-head-left-col .cd-info {
    flex: 1;
}

.cd-info .cd-bank-name {
    font-size: 20px;
    color: #0B162D;
    font-weight: 600;
    line-height: 1.3;
    margin: 0 0 10px;
}

.cd-info .cash-point-bonus {
    list-style: none;
    padding: 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    grid-gap: 15px;
    --size: 32px;
}

.cd-info .cash-point-bonus .bonus-list {
    width: var(--size);
    height: var(--size);
    min-width: var(--size);
    background-color: #F1FCFF;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    padding: 7px;
    transition: all .5s ease-in-out;
}

.cd-info .cash-point-bonus .bonus-list:hover {
    background-color: #0F63FF;
}

.cd-info .cash-point-bonus .bonus-list img {
    transition: all .5s ease-in-out;
    object-fit: contain;
}

.cd-info .cash-point-bonus .bonus-list:hover img {
    filter: brightness(0) invert(1);
}

/* Right Column */
.credit-card-header .cd-head-right-col {
    padding-left: var(--gap);
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    grid-gap: 20px;
}

.cd-head-right-col .cd-bank-logo {
    max-width: 171px;
    width: 100%;
    line-height: 0;
}

.cd-head-right-col .cd-bank-logo img {
    object-fit: contain;
}

.cd-head-right-col .cd-search-btn {
    max-width: 171px;
    width: 100%;
    text-align: center;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #0F63FF;
    border-radius: 64px;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    transition: all .5s ease-in-out;
}

.cd-head-right-col .cd-search-btn:hover {
    transform: translateY(-5px);
    color: #fff;
}

/* Example Data CSS */
.credit-cards .credit-card .cd-example-data {
    width: 75%;
    margin: 0 auto 15px;
    font-size: 15px;
    text-align: center;
    color: #515151;
    line-height: 1.5;
}

/* Credit Card Range(Status) */
.credit-cards .credit-card .cd-range-box {
    background-color: rgb(237 251 255 / 80%);
    padding: 21px 40px;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    --gap: 15px;
    flex-wrap: wrap;
    grid-gap: 15px;
}

.cd-range-box .cd-range-data {
    margin-left: 20px;
    max-width: 150px;
}

.cd-range-box .cd-range-data::marker {
    font-size: 22px;
    line-height: 0;
}

.cd-range-box .cd-range-data p {
    margin: 0 0 5px;
    font-size: 16px;
    color: #515151;
    line-height: 1.5;
}

.cd-range-box .cd-range-data strong {
    font-size: 20px;
    color: #0B162D;
    font-weight: 500;
    line-height: 1.2;
    display: block;
}

/* More Info Button */
.credit-cards .credit-card .credit-more-info-btn {
    background-color: transparent;
    border-style: none;
    padding: 0;
    width: fit-content;
    margin: 22px auto 0;
    font-size: 14px;
    color: #515151;
    line-height: 1.2;
    font-weight: 600;
    letter-spacing: 0.3px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    grid-gap: 10px;
    --circleSize: 36px;
    transition: all .5s ease-in-out;
}

.credit-cards .credit-card .credit-more-info-btn::before {
    content: "\f107";
    font-family: "Font Awesome 6 Free";
    min-width: var(--circleSize);
    height: var(--circleSize);
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    border-radius: 50%;
    box-shadow: 0px 1px 4px 0px #00000040;
    color: #0F63FF;
    font-size: 20px;
    line-height: 1;
    transition: all .5s ease-in-out;
}

.credit-cards .credit-card .credit-more-info-btn:hover {
    color: #0F63FF;
    transform: translateY(-5px);
}

.credit-cards .credit-card .credit-more-info-btn:hover::before {
    background-color: #0F63FF;
    color: #fff;
}

.credit-cards .credit-card .credit-more-info-btn.show-info::before {
    content: '\f106';
}

/* Credit Card More Info Data CSS*/
/* Check Points */
.credit-cards .credit-card .credit-more-info-wrap {
    margin-top: 18px;
}

.credit-more-info-wrap .cd-check-points ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    justify-content: space-between;
    list-style: none;
    border: 1px solid rgb(0 0 0 / 10%);
    border-radius: 8px;
    padding: 17px 24px;
    --gap: 70px;
    grid-gap: 20px var(--gap);
}

.credit-more-info-wrap .cd-check-points ul>li {
    font-size: 15px;
    line-height: 1.4;
    position: relative;
    display: flex;
    align-items: flex-start;
    grid-gap: 10px;
    font-weight: 400;
    color: #3F3F3F;
}

.credit-more-info-wrap .cd-check-points ul>li::after {
    content: '';
    position: absolute;
    top: 0;
    right: calc(var(--gap)/(-2));
    min-width: 1px;
    height: 100%;
    background-color: rgb(0 0 0 / 10%);
}

.credit-more-info-wrap .cd-check-points ul>li:nth-child(3n + 3)::after {
    display: none;
}

.credit-more-info-wrap .cd-check-points ul>li::before {
    content: "\f00c";
    display: block;
    font-size: 15px;
    min-width: 13px;
    font-weight: 700;
    font-family: "Font Awesome 6 Free";
    line-height: 1.4;
    color: #0F63FF;
    margin-top: 2px;
}

/* Bank Features */
.credit-more-info-wrap .cd-bank-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin: 32px 0 45px;
    grid-gap: 30px 100px;
    padding: 0;
}

.cd-bank-features .feature-item {
    margin-left: 22px;
}

.cd-bank-features .feature-item::marker {
    font-size: 18px;
    line-height: 0;
}

.cd-bank-features .feature-item strong {
    font-size: 15px;
    line-height: 1.4;
    margin-bottom: 5px;
    display: block;
    color: #3F3F3F;
    font-weight: 700;
    letter-spacing: 0.3px;
}

.cd-bank-features .feature-item p {
    margin: 0;
    font-size: 15px;
    line-height: 1.5;
    color: #3F3F3F;
    font-weight: 400;
}

/* More Example Data CSS */
.bank-more-example-content {
    padding: 17px 24px;
    border: 1px solid rgb(0 0 0 / 10%);
    border-radius: 10px;
    text-align: center;
    font-size: 15px;
    color: #515151;
    line-height: 1.4;
}

/* Bank Info Table */
.credit-more-info-wrap .bank-info-table-wrap {
    margin: 32px 0;
    overflow: auto;
    box-shadow: 0px 0px 7px 1px #0000000F;
    border-radius: 5px;
}

.bank-info-table-wrap table {
    width: 100%;
    border-style: none;
    margin: 0;
}

.bank-info-table-wrap .bank-info-table>tbody>tr td {
    background-color: #fff;
    border-style: none;
    padding: 13px 24px;
    line-height: 1.4;
    vertical-align: middle;
    color: #3F3F3F;
    font-size: 15px;
    font-weight: 400;
    min-width: 225px;
}

.bank-info-table-wrap .bank-info-table>tbody tr:nth-child(even)>td {
    background-color: #F1FCFF;
}

.bank-info-table-wrap .bank-info-table>tbody>tr .bank-info-label {
    min-width: 200px;
    max-width: 200px;
    word-wrap: break-word;
    font-weight: 700;
}

/* Load More Button */
.credit-card-shortcode .load-more .more_posts {
    max-width: 506px;
    width: 100%;
    margin: 48px auto 0;
    min-height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    grid-gap: 3px;
    background-color: #EDFBFF;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 400;
    text-decoration: none;
    color: #0B162D;
    transition: all .5s ease-in-out;
    padding: 5px 15px;
}

.credit-card-shortcode .load-more .more_posts span{
    color: #0F63FF;
    transition: all .5s ease-in-out;
}
.credit-card-shortcode .load-more .more_posts:hover span{
    color: #fff;
}

/* .credit-card-shortcode .load-more .more_posts::before {
    content: '\21';
    min-width: 14px;
    height: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #0F63FF;
    border-radius: 100%;
    font-size: 11px;
    color: #0F63FF;
    transition: all .5s ease-in-out;
} */

.credit-card-shortcode .load-more .more_posts:hover {
    background-color: #0F63FF;
    color: #fff;
}

/* .credit-card-shortcode .load-more .more_posts:hover::before {
    color: #fff;
    border-color: #fff;
} */

/* Responsive */
@media (max-width:1200px) {
    .credit-card-shortcode .credit-cards .credit-card {
        padding: 25px 25px 18px;
    }

    .credit-card-header .cd-head-left-col {
        grid-gap: 15px;
    }

    .cd-head-left-col .credit-card-img {
        max-width: 140px;
    }

    .cd-info .cd-bank-name {
        font-size: 18px;
        margin: 0 0 8px;
    }

    .credit-card-header .cd-head-right-col {
        grid-gap: 10px;
    }

    .cd-head-right-col .cd-bank-logo,
    .cd-head-right-col .cd-search-btn {
        max-width: 160px;
    }

    .credit-cards .credit-card .cd-range-box {
        padding: 18px 30px;
    }

    .credit-more-info-wrap .cd-check-points ul {
        padding: 15px 20px;
        --gap: 50px;
    }

    .credit-more-info-wrap .cd-check-points ul>li {
        font-size: 14px;
        grid-gap: 8px;
    }

    .credit-more-info-wrap .cd-check-points ul>li::before {
        font-size: 13px;
    }

    .credit-more-info-wrap .cd-bank-features {
        margin: 25px 0 35px;
        grid-gap: 30px 60px;
    }

    .bank-more-example-content {
        padding: 15px 20px;
        font-size: 14px;
    }

    .bank-info-table-wrap .bank-info-table>tbody>tr td {
        padding: 12px 18px;
    }

    .bank-info-table-wrap .bank-info-table>tbody>tr .bank-info-label {
        min-width: 175px;
        max-width: 175px;
    }

    .credit-cards .credit-card .credit-more-info-btn {
        --circleSize: 32px;
    }

    .credit-cards .credit-card .credit-more-info-btn::before {
        font-size: 18px;
    }
}

@media (max-width:991px) {
    .credit-card-shortcode .credit-cards .credit-card {
        padding: 20px 15px 15px;
    }

    .credit-card-shortcode .credit-cards .credit-card+.credit-card {
        margin-top: 20px;
    }

    .credit-card .credit-card-header {
        --gap: 5px;
        margin-bottom: 6px;
    }

    .credit-card-header .cd-head-left-col {
        grid-gap: 10px;
    }

    .cd-head-left-col .credit-card-img {
        max-width: 125px;
    }

    .cd-head-right-col .cd-bank-logo,
    .cd-head-right-col .cd-search-btn {
        max-width: 140px;
    }

    .cd-head-right-col .cd-search-btn {
        min-height: 42px;
    }

    .credit-cards .credit-card .cd-range-box {
        padding: 15px 20px;
    }

    .cd-range-box .cd-range-data::marker {
        font-size: 20px;
    }

    .cd-range-box .cd-range-data p {
        font-size: 15px;
    }

    .cd-range-box .cd-range-data strong {
        font-size: 18px;
    }

    .credit-cards .credit-card .cd-example-data {
        width: 85%;
        margin: 0 auto 10px;
        font-size: 14px;
    }

    .credit-more-info-wrap .cd-check-points ul {
        padding: 12px 15px;
        --gap: 30px;
    }

    .credit-more-info-wrap .cd-bank-features {
        margin: 20px 0 25px;
        grid-gap: 20px 30px;
    }

    .cd-bank-features .feature-item::marker {
        font-size: 16px;
    }

    .cd-bank-features .feature-item strong,
    .cd-bank-features .feature-item p {
        font-size: 14px;
    }

    .bank-more-example-content {
        padding: 12px 15px;
    }

    .credit-more-info-wrap .bank-info-table-wrap {
        margin: 25px 0;
    }

    .bank-info-table-wrap .bank-info-table>tbody>tr td {
        padding: 12px 15px;
    }
}

@media (max-width:767px) {
    .credit-card .credit-card-header {
        --gap: 0;
        flex-wrap: wrap;
        grid-gap: 10px 0;
    }

    .credit-card-header .cd-head-left-col,
    .credit-card-header .cd-head-right-col {
        width: 100%;
    }

    .credit-more-info-wrap .cd-check-points ul {
        grid-template-columns: repeat(2, 1fr);
    }

    .credit-more-info-wrap .cd-check-points ul>li:nth-child(3n + 3)::after {
        display: block;
    }

    .credit-more-info-wrap .cd-check-points ul>li:nth-child(even)::after,
    .credit-more-info-wrap .cd-check-points ul>li:last-child::after {
        display: none;
    }

    .credit-more-info-wrap .cd-bank-features {
        margin: 15px 0 20px;
        grid-gap: 20px 10px;
    }

    .credit-card-shortcode .load-more .more_posts {
        min-height: 50px;
        margin-top: 30px;
    }
}

@media (max-width:450px) {

    .credit-card-header .cd-head-left-col,
    .credit-card-header .cd-head-right-col {
        justify-content: center;
        text-align: center;
    }

    .cd-head-left-col .cd-info {
        flex: none;
        width: 100%;
    }

    .cd-info .cash-point-bonus {
        justify-content: center;
    }

    .credit-cards .credit-card .cd-example-data {
        width: 100%;
    }

    .credit-more-info-wrap .cd-check-points ul {
        grid-template-columns: repeat(1, 1fr);
    }

    .credit-more-info-wrap .cd-check-points ul>li::after {
        display: none;
    }

    .credit-more-info-wrap .cd-bank-features {
        grid-gap: 15px;
        grid-template-columns: 1fr;
    }

    .bank-info-table-wrap .bank-info-table>tbody>tr td {
        padding: 12px;
        font-size: 12px;
    }

    .bank-info-table-wrap .bank-info-table>tbody>tr .bank-info-label {
        min-width: 125px;
        max-width: 125px;
        position: sticky;
        left: 0;
    }

    .credit-more-info-wrap .bank-info-table-wrap {
        margin: 15px 0;
    }

    .credit-card-shortcode .load-more .more_posts {
        min-height: auto;
        margin-top: 20px;
        font-size: 12px;
        max-width: 400px;
        padding: 16px 15px;
    }
}

/* Credit Card Section CSS End From Here */