* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.credit-section-wrapper {
    padding-top: 5rem;
    border-bottom: 4px solid;
    border-image: linear-gradient(to right, black, white, black) 1;
    position: relative;
}

.credit-section {
    padding: 60px 20px 30px;
    min-height: 100vh;
    display: flex;
}

.credit-card-img {
    max-width: 100%;
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.05);
}

.bottom-bar{
    position: sticky;
    bottom:0;
    left:0;
}

.details h6 {
    font-family: Inter;
    font-weight: 400;
    font-size: 12px;
    line-height: 160%;
    text-transform: uppercase;

}

.details h2 {
    margin: 5px 0 15px;
    font-family: Inter;
    font-weight: 400;
    font-size: 24px;
    line-height: 160%;
    text-transform: capitalize;
}

.details p {
    margin-bottom: 20px;
    line-height: 1.6;
    font-family: Inter;
    font-weight: 400;
    font-size: 14px;
    line-height: 160%;
    letter-spacing: 0%;
    text-transform: capitalize;
}

.info-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;

}

hr {
    border-top: 1px solid #FFFFFF33;
}

.info-table th {
    padding-bottom: 10px;
    font-family: Inter;
    font-weight: 400;
    font-style: Regular;
    font-size: 14px;
    line-height: 160%;
    letter-spacing: 0%;
    text-transform: uppercase;

}

.info-table td {
    color: #fff;
    padding-bottom: 10px;
    font-family: Inter;
    font-weight: 700;
    font-size: 14px;
    line-height: 160%;
    letter-spacing: 0%;
    text-transform: uppercase;
}

.info-table td span {
    font-weight: bold;
}

.btn-apply,
.btn-compare {
    background: linear-gradient(to right, #f16529, #f7931e);
    color: #fff;
    border: none;
    padding: 10px 25px;
    border-radius: 25px;
    transition: 0.3s ease;
    font-family: Inter;
    font-weight: 700;
    font-size: 14px;
}

.btn-apply:hover {
    opacity: 0.9;
}

.bottom-bar {
    background: #2e2e2e;
    padding: 25px 20px;
}

.bottom-bar .left-text {
    font-family: Inter;
    font-weight: 400;
    font-style: Regular;
    font-size: 12px;
    line-height: 160%;
}

.bottom-bar .left-text strong {
    color: #fff;
    font-family: Montserrat;
    font-weight: 700;
    font-size: 14px;
    line-height: 21.56px;
    text-transform: capitalize;
    word-spacing: 4px;
}

.frist-product-title-left p {
    font-family: Inter;
    font-weight: 700;
    font-style: Bold;
    font-size: 18px;
    line-height: 160%;
    text-transform: uppercase;
}


.first-product-desc-left p {
    font-family: Inter;
    font-weight: 400;
    font-size: 14px;
    line-height: 160%;
}

.colored_text {
    font-family: Inter;
    font-weight: 700;
    font-style: Bold;
    font-size: 14px;
    line-height: 160%;
    color: #E97318;
}

.colored_text:hover{
    color:grey;
}



@media (max-width: 767px) {


    .section-cards-wrapper-data{
        margin-bottom: 1rem;
    }

    .credit-section {
        padding: 1px 15px;
    }

    /* .details {
        text-align: center;
    } */

    .info-table th,
    .info-table td {
        font-size: 12px;
    }

    .bottom-bar {
        text-align: center;
    }

    .btn-compare {
        margin-top: 15px;
    }
}



.card-container {
    perspective: 1000px;
    width: 100%;
    max-width: 400px;
    height: 250px;
    margin: 0 auto;
}

.credit-card {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.6s ease-out;
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.credit-card img {
    pointer-events: none;
    user-select: none;
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-drag: none;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.credit-card:active {
    cursor: grabbing;
}

.card-face {
    position: absolute;
    width: 100%;
    backface-visibility: hidden;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.card-front {
    /*background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);*/
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-back {
   
    transform: rotateY(180deg);
    color: white;
    /* padding: 25px; */
}

.card-chip {
    width: 45px;
    height: 35px;
    background: linear-gradient(145deg, #ffd700, #ffed4e);
    border-radius: 8px;
    position: relative;
    margin-bottom: 20px;
}

.card-chip::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 35px;
    height: 25px;
    background: linear-gradient(145deg, #e6c200, #ffd700);
    border-radius: 4px;
}

.card-number {
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: 3px;
    margin: 20px 0;
    font-family: 'Courier New', monospace;
}

.card-info {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.card-holder {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card-expiry {
    font-size: 0.9rem;
    font-family: 'Courier New', monospace;
}

.card-logo {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 2rem;
    font-weight: bold;
    opacity: 0.8;
}

.magnetic-strip {
    width: 100%;
    height: 50px;
    background: linear-gradient(90deg, #333, #000, #333);
    margin: 20px 0;
}

.signature-panel {
    width: 100%;
    height: 40px;
    background: #f0f0f0;
    border-radius: 5px;
    margin: 15px 0;
    position: relative;
}

.signature-panel::after {
    content: 'John Doe';
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #333;
    font-style: italic;
    font-size: 0.9rem;
}

.cvv-area {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
}

.cvv-label {
    font-size: 0.8rem;
    opacity: 0.8;
}

.cvv-number {
    background: white;
    color: #333;
    padding: 5px 10px;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-weight: bold;
}

.instructions {
    color: white;
    text-align: center;
    margin-bottom: 30px;
    opacity: 0.9;
}


/* filter  */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    display: none;
    z-index: 1040;
}

.filter-sidebar {
    position: fixed;
    top: 0;
    right: -100%;
    /* width: 560px; */
    width: 360px;
    height: 100%;
    background: #fff;
    z-index: 99050;
    overflow-y: auto;
    transition: right 0.3s ease-in-out;
    /* padding: 20px; */
    box-shadow: -2px 0 6px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
}

.filter-sidebar.open {
    right: 0;
}

.filter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
    margin-bottom: 20px;
}

.filter-title {
    font-family: Inter;
    font-weight: 700;
    font-style: Bold;
    font-size: 18px;
    line-height: 160%;
    text-transform: uppercase;
}

.ussuers {
    font-family: Inter;
    font-weight: 700;
    font-size: 14px;
    line-height: 160%;
    text-transform: uppercase;
}

.filter-card-title,
.form-check-label strong {
    font-family: Inter;
    font-weight: 700;
    font-size: 14px;
    line-height: 160%;
    text-transform: uppercase;
}

.form-check-label {
    font-weight: 600;
}

.form-check small {
    display: block;
    font-family: Inter;
    font-weight: 400;
    font-size: 12px;
    line-height: 14.95px;
}

.total-checks {
    font-family: Inter;
    font-weight: 400;
    font-size: 14px;
    line-height: 160%;
    text-transform: uppercase;
    color: black;
}

.card-type-toggle {
    font-family: Inter;
    font-weight: 400;
    font-size: 14px;
    line-height: 160%;
}

.apply-footer {
    /* position: fixed; */
    bottom: 0;
    right: -100%;
    width: 100%;
    background: #111;
    color: #fff;
    padding: 12px 20px;
    font-size: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: right 0.3s ease-in-out;
    z-index: 1051;
}

.apply-footer.open {
    right: 0;
}

.apply-btn {
    background: #f27836;
    border: none;
    padding: 10px 20px;
    border-radius: 20px;
    color: #fff;
    font-weight: 500;
    white-space: nowrap;
}

.card-options {
    display: none;
    margin-top: 10px;
    /* max-height: 300px; */
    overflow-y: auto;
    height: calc(100vh - 353px);
    will-change: transform;
    transform: translateZ(0);
}

.card-options.show {
    display: block;
}

.card-type-toggle {
    cursor: pointer;
}

@media (max-width: 400px) {

    .filter-sidebar,
    .apply-footer {
        width: 100%;
    }
}




/* table  */

/* .filter-all-section {
    display: none;
} */

.table-responsive::-webkit-scrollbar {
    height: 10px;
    width: 50px;
}

/* Track */
.table-responsive::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px grey;
    border-radius: 10px;
}

/* Handle */
.table-responsive::-webkit-scrollbar-thumb {
    background: rgb(183, 181, 181);
    border-radius: 10px;
}

/* Handle on hover */
/* .table-responsive::-webkit-scrollbar-thumb:hover {
  background: #b30000; 
} */

.card-table-container-wrapper table,
.card-table-container-wrapper th,
.card-table-container-wrapper tr,
.card-table-container-wrapper td {
    border: none;
}

.card-table-container-wrapper th {
    padding: 0;
    margin: 0;
}

.table-section {
    padding: 20px;
}

.table-custom thead {
    background-color: #111;
    color: #fff;
}

.table-custom td,
.table-custom th {
    text-align: center;
    vertical-align: middle;
}


.left-col {
    font-family: Inter;
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
}

.left-col div {
    font-family: Inter;
    font-weight: 700;
    font-size: 52px;
    line-height: 42px;
}

#tableBody td:not(caption)>*>* {
    padding: .8rem .5rem;
}

.left-col {
    background-color: #111;
}

.left-col:nth-child(even) {
    color: black;
}

td {
    font-family: Inter;
    font-weight: 400;
    font-size: 12px;
    line-height: 22px;
}


.alt-row {
    background-color: #fbeae5;
    color: #000;
}

.dark-row {
    background-color: #000;
    color: white;
}



.image-thumb {
    min-width: 300px;
    height: auto;
}

.remove-btn {
    position: absolute;
    top: 5px;
    right: 5px;
    background: transparent;
    border: none;
    color: white;
}

.card-header-img {
    position: relative;

}

@media (max-width: 768px) {

    .credit-section{
        min-height: auto;
    }
    .card-container {
        max-width: 350px;
        height: 220px;
        margin-top:6rem;
        margin-bottom: 3rem;
    }

   
    .card-number {
        font-size: 1.2rem;
        letter-spacing: 2px;
    }

    .card-chip {
        width: 40px;
        height: 30px;
    }
}

@media (max-width: 480px) {
    .card-container {
        max-width: 300px;
        height: 190px;
    }

    

    .card-number {
        font-size: 1rem;
        letter-spacing: 1px;
    }

    .card-logo {
        font-size: 1.5rem;
    }
}

/* slider  */
.product_detail_slider .swiper-slide {
    background-color: unset;
}
.product_detail_slider .credit-card-img {
    margin-bottom: 0;
}

.product_detail_slider .swiper-slide {    
    padding: 0px;  
}

.card-table {
    /* background: linear-gradient(to right, #111, #1c1c1c); */
    color: #fff;
    padding: 20px 0;
    font-size: 14px;
}

.card-table .row {
    /* border-bottom: 1px solid rgba(255, 255, 255, 0.1); */
    margin: 0;
}

.card-table .row:last-child {
    border-bottom: none;
}

.card-table .col {
    padding: 15px 10px;
}



.card-table-details .row>* {

    padding-right: calc(var(--bs-gutter-x) * .5);
    padding-left: 0;

}

.top-text {
    text-transform: uppercase;
    font-size: 12px;
    color: #c0c0c0;
    font-family: Inter;
    font-weight: 400;
    font-size: 14px;
    line-height: 160%;
    text-align: start;
}

.bottom-text {
    font-weight: bold;
    margin-top: 4px;
    font-family: Inter;
    font-weight: 700;
    font-style: Bold;
    font-size: 14px;
    line-height: 160%;
    text-align: start;
}

.highlight {
    font-weight: 700;
}

@media (max-width: 576px) {

    .card-table-details .row {
        row-gap: 1rem;
    }

    .card-table .col {
        padding: 12px 5px;
    }

    .details {
        margin-bottom: 2rem;
    }

    .section-cards-wrapper-data a {
        display: block;
        width: 130px;
        text-align: center;
    }
}



@media (min-width: 576px) and (max-width: 767.98px) {
      .card-table-details .row {
        row-gap: 1rem;
    }

}




.card_table_travel_card {
    font-family: Inter;
    font-weight: 700;
    font-size: 52px;
    line-height: 62px;
}

.card_table_travel_card {
    padding-left: 7rem;
    padding-top: 2rem;
    padding-right: 8rem;
    padding-bottom: 2rem;
    background: #0F1112;
}

.card_table_travel_title {
    padding-block: 1rem;
    display: flex;
    justify-content: center;
}

.card_table_travel_title:nth-child(odd),
.card_detail_compare:nth-child(odd) {
    background-color: black;
    color: white;
}

.card_table_travel_title:nth-child(even),
.card_detail_compare:nth-child(even) {
    background-color: white;
    color: black;
    /* Optional: for contrast */
}

.right_compare_table_inner {
    overflow-x: auto;
    padding-bottom: 1rem;
     cursor: grab; 
     user-select: auto;
}

.right_compare_table_inner.grabbing {
    cursor: grabbing; 
    user-select: none;
}

.right_compare_table_inner:active {
    cursor: grabbing; 
}

.right_compare_table_inner::-webkit-scrollbar {
    height: 10px;
    width: 50px;
}

/* Track */
.right_compare_table_inner::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px grey;
    border-radius: 10px;
}

/* Handle */
.right_compare_table_inner::-webkit-scrollbar-thumb {
    background: rgb(183, 181, 181);
    border-radius: 10px;
}


.card_image img {
    width: 300 !important;
}




.remove_btn {
    position: absolute;
    top: 10px;
    right: 10px;
    height: 25px;
    width: 25px;
    border: none;
    outline: none;
    border-radius: 50%;
}

.perticular_card {
    max-width: 300px;
}

.card_table_travel_title p,
.card_detail_compare p {
    font-family: Inter;
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    margin-bottom: 0;
}

.card_detail_compare {
    padding-block: 1rem;
}




@media (max-width: 575.98px) {

    .card_table_travel_card {
        padding-left: 1rem;
        padding-right: 0rem;
        padding-top: 2rem;
        padding-bottom: 2rem;
        background: #0F1112;
    }

    .card_table_travel_card {
        font-size: 34px;
        line-height: 31px;
    }

    .card_image img {
        width: 215.5px !important;
    }

    .card_table_travel_title {
        padding-block: 1rem;
        padding-left: 1rem;
    }

}

@media (min-width: 576px) and (max-width: 767.98px) {

    .card_table_travel_card {
        padding-left: 3rem;
        padding-right: 0rem;
        padding-top: 2rem;
        padding-bottom: 2rem;
        background: #0F1112;
    }

    .card_table_travel_title {
        padding-left: 2rem;
    }
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .card_table_travel_card {
        padding-left: 3rem;
    }

    .card_table_travel_title {
        padding-block: 1rem;
        padding-left: 3rem;
    }


}

@media (min-width: 1200px) and (max-width: 1399.98px) {
    .card_table_travel_card {
        padding-top: 1rem;
        padding-bottom: 1rem;
    }

    .card_table_travel_card {
        font-size: 43px;
        line-height: 44px;
    }

    .card_table_travel_title,
    .card_detail_compare {
        padding-block: 0.5rem;
    }

    .card_image img {
        width: 207.5px;
    }

    .card_table_travel_title p,
    .card_detail_compare p {
        font-size: 13px;
    }

}