<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.footer-main {
    overflow: hidden;
}

.kcc h1,
.kcc h2,
.kcc h3,
.kcc h4,
.kcc h5,
.kcc h6,
.kcc .h1,
.kcc .h2,
.kcc .h3,
.kcc .h4,
.kcc .h5,
.kcc .h6,
.kcc strong,
.kcc a {
    font-family: kurious-looped;
    font-weight: 600;
}

/* @media (min-width: 1200px) {
    .container {
        width: 1240px !important;
    }
} */

/*########### loading ###########*/
.load-div {
    position: fixed;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    /*width: 100%;
    height: 100%;*/
    z-index: 100000;
    background: white;
}

.loader-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.loader {
    border: 8px solid #ccc;
    border-radius: 50%;
    border-top: 8px solid #00a950;
    width: 60px;
    height: 60px;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}

.inactive {
    display: none !important;
}


@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}


@keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
/*########### end loading ###########*/

/*########### sc-floating-apply ###########*/
.sc-floating-apply {
    padding: 10px 0;
    font-family: 'kurious-looped';
    color: #333333;
    font-size: 13px;
    font-weight: 500;
    border-bottom: 1px solid #ddd;
    background-color: #fff;
    position: sticky;
    top: 64px;
    z-index: 999;
    display: none;
}

.sc-floating-apply .nav {
    display: block;
    width: 100%;
}


.sc-floating-apply .nav-name {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 10px;
}

.icw .btn {
    width: 200px;
    height: 45px;
    border-radius: 25px;
    font-family: 'kurious-looped';
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    line-height: 45px;
    padding: 0;
    background-color: #405260;
    position: relative;
}

.icw .btn:hover {
    background-color: #4D5E6C;
}

.icw .btn.btn-green-gradient {
    border: 0;
    /* background-image: linear-gradient(98deg, #00a850 0%, #61d699 100%); */
    background: #09A94E;
}

.icw .btn.btn-green-gradient:hover {
    /* background-image: linear-gradient(98deg, #00BF5B 0%, #6DE6A7 100%); */
    background: #009445;
}

.icw .sc-apply-mb {
    padding: 13px 15px;
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.9);
    z-index: 999;
}

.icw .sc-apply-mb .action a {
    display: block;
    width: 100%;
}

.h-72 {
    min-height: auto !important;
}

@media screen and (min-width:1199px) {
    .sc-floating-apply {
        top: 80px;
        transition: .3s ease-in-out;
        display: block;
    }
    .sc-floating-apply.top {
        top: 80px;
        transition: .3s ease-in-out;
    }
    .h-72 {
        min-height: 72px !important;
    }
}

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

    .sc-floating-apply .nav {
        display: flex;
        justify-content: space-between;
        width: auto;
        align-items: center;
    }

    .sc-floating-apply .nav-name {
        padding: 0;
    }

    .sc-floating-apply .nav-name li {
        padding: 0 15px;
    }

    .sc-floating-apply .nav-name li:last-child {
        padding-right: 0;
    }

    .sc-floating-apply .nav-name li:first-child {
        padding-left: 0;
    }
}

/*########### end sc-floating-apply ###########*/

/*########### section-product ###########*/
.section-product {
    background-color: #fff;
    padding: 40px 0 50px;
}

.icw .heading .title {
    color: #333333;
    font-family: 'kurious-looped';
    font-size: 26px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.5;
}

.icw .section-product .heading .sub-title {
    color: #333333;
    font-family: 'kurious-looped';
    font-size: 18px;
    font-weight: 600;
    line-height: 1.5;
    text-align: center;
}

.back-to-top {
    position: fixed;
    z-index: 9999;
    bottom: 20px;
    right: 17px;
    width: 50px;
    opacity: 0;
    cursor: pointer;
    border-radius: 50%;
    -webkit-box-shadow: 0 1px 10px 1px rgb(0 0 0 / 20%);
    -o-box-shadow: 0 1px 10px 1px rgba(0, 0, 0, 0.2);
    box-shadow: 0 1px 10px 1px rgb(0 0 0 / 20%);
    -webkit-transition: opacity .3s ease-out;
    -o-transition: opacity .3s ease-out;
    transition: opacity .3s ease-out;
}

.show {
    opacity: 1;
}

@media screen and (min-width:767px) {
    .icw .heading .title {
        font-size: 35px;
        margin-bottom: 35px;
        line-height: 29px;
    }

    .section-product .heading .sub-title {
        font-size: 24px;
    }

    .section-product {
        padding: 50px 0;
    }
}

/*########### end section-product ###########*/

/*########### card ###########*/
.icw .link {
    color: #00a94f;
    text-decoration: none;
    font-family: 'kurious-looped';
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
    position: relative;
}

.icw .link:hover {
    text-decoration: underline;
}

.icw .link.w-normal {
    font-weight: 500;
}

.icw .more::after {
    content: '';
    position: absolute;
    top: 49%;
    right: -15px;
    margin-top: 1px;
    width: 8px;
    height: 8px;
    border-right: 3px solid #00a94f;
    border-bottom: 3px solid #00a94f;
    transform: rotate(-45deg) translateY(-50%);
}

.section-product .cards .card .caption .heading {
    color: #333333;
    font-family: 'kurious-looped';
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 15px;
}

.section-product .cards .card .caption .product {
    font-family: 'kurious-looped';
    color: #00a94f;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 5px;
}

.section-product .cards .card {
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.16);
    border-radius: 10px;
    background-color: #ffffff;
    margin: 0 0 15px;
    overflow: hidden;
}

/* .section-product .cards .card:last-child {
    margin-bottom: 0;
} */

.section-product .cards {
    /* width: calc(100% / 3); */
    display: block;
    width: 100%;
}

.section-product .cards .img-card {
    padding: 20px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.section-product .cards .img-card img {
    max-width: 220px;
    width: 100%;
}

.section-product .cards .img-card.k-line img {
    max-width: 140px;
    width: 100%;
}

.section-product .cards .img-card.k-my {
    background-color: #def4c3;
}

.section-product .cards .img-card.k-max {
    background-color: #52866d;
}

.section-product .cards .img-card.k-online-max {
    background-color: #9DC778;
}

.section-product .cards .img-card.k-debit {
    background-color: #b5efd3;
}

.section-product .cards .img-card.k-journey {
    background-color: #31988a;
}

.section-product .cards .img-card.k-crybaby {
    background-image: url(/SiteCollectionDocuments/personal/debitcard/img/debit-card/debit-card_k-crybaby-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    /* max-width: 260px; */
}
.section-product .cards .img-card.k-crybaby img {
    max-width: 280px;
}

.section-product .cards .img-card.k-crybaby-maxplus {
    background-image: url(/SiteCollectionDocuments/personal/debitcard/img/debit-card/debit-card_k-crybaby_maxplus_bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
}

.section-product .cards .img-card.k-online {
    background: linear-gradient(-57deg, #d3ffeb 0%, #75ded2 100%);
}

.section-product .cards .img-card.k-mangmoom {
    background-image: linear-gradient(124deg, #2c4546 0%, #396464 100%);
}

.section-product .cards .img-card.k-union {
    background-color: #de6862;
}

.section-product .cards .img-card.k-line {
    background-color: #93daff;
}

.section-product .cards .img-card.k-basic {
    background: linear-gradient(123deg, #bfe2ac 0%, #f4fded 100%);
}

.section-product .cards .card .caption {
    padding: 15px 20px 20px;
}

.section-product .all-card {
    display: block;
    margin: 0 auto;
}

.section-product .all-card .card-icon {
    max-width: 225px;
    width: 100%;
    margin: 30px auto 20px;
}

.section-product .all-card .text {
    color: #333333;
    font-family: 'kurious-looped';
    font-size: 18px;
    font-weight: 600;
    font-style: normal;
    letter-spacing: normal;
    line-height: 1.5;
    text-align: center;
}

.section-product .all-card .text .more-card {
    margin-bottom: 15px;
}

.icw .section-product .all-card .text .action .btn.more::after {
    right: 40px;
    border-color: #fff;
}

.section-product .cards .card .caption .heading&gt;a.title-link:hover {
    background-position: 0;
}

.section-product .cards .card .caption .heading&gt;a.title-link {
    position: relative;
    color: #333;
    background-image: linear-gradient(to right, #00a94f, #00a94f 50%, rgb(51 51 51 / 95%) 50%);
    background-size: 200% 100%;
    background-position: 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    font-weight: 600;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.section-product .cards .img-card .img-thumb img {
    transform: scale(1.0);
    transition: all 400ms ease-in-out;
    width: 100%;
}

.section-product .cards .img-card .img-thumb:hover img {
    transform: scale(1.1);
}

@media screen and (min-width:767px) {
    .section-product .cards .img-card {
        height: 260px;
        padding: 0;
    }

    .section-product .cards .card .caption {
        padding: 20px;
    }

    .section-product .cards .card .caption .product {
        line-height: 18px;
    }

    .section-product .cards .card .caption .heading {
        font-size: 20px;
        line-height: 26px;
        min-height: 55px;
    }

    .section-product .cards {
        display: flex;
        flex-flow: row wrap;
        /* justify-content: space-between; */
        width: auto;
        margin: 0 -5px;
    }

    .section-product .cards .card {
        width: calc(97% / 2);
        margin: 0 5px 25px;
    }

    .section-product .all-card .text {
        font-size: 24px;
    }

    .section-product .all-card .text .more-card {
        margin-bottom: 20px;
    }

    .section-product .all-card {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 25px;
    }

    .section-product .all-card .card-icon {
        margin: 0 40px 0 0;
    }
}

@media screen and (min-width:1199px) {
    .section-product .cards .card {
        width: calc(94% / 3);
        margin: 0 10px 25px;
    }

    .section-product .cards {
        margin: 0 -10px;
    }
}

@media screen and (max-width:767px) {
    .section-product .cards .card .caption .heading {
        height: auto !important;
    }
}

/*########### end card ###########*/

/*########### apply ###########*/
.sc-apply {
    padding: 50px 0;
}

.sc-apply .heading .title {
    margin-bottom: 0;
}

.sc-apply .wrapper-debit {
    border-radius: 10px;
    margin-bottom: 30px;
}

.sc-apply .row:first-child .wrapper-debit {
    margin-bottom: 0;
}

.sc-apply .wrapper-debit .inner {
    border-radius: 10px;
    background-image: linear-gradient(180deg, #555555 0%, #333333 100%);
    padding: 10px 30px 30px;
}

.sc-apply .wrapper-debit .inner&gt;img {
    margin-top: -60px;
}

.sc-apply .wrapper-debit .inner .t-apply {
    color: #ffffff;
    font-family: 'kurious-looped';
    font-size: 18px;
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 10px;
}

.mb-20 {
    margin-bottom: 20px !important;
}

.sc-apply .row:last-child .wrapper-debit .inner .t-apply {
    margin-bottom: 10px;
}

.sc-apply .wrapper-debit .inner .sub-apply {
    color: #ffffff;
    font-family: 'kurious-looped';
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    margin-bottom: 20px;
}

.sc-apply .wrapper-debit .inner.inner-d-flex {
    display: block;
    padding: 30px;
}

.sc-apply .wrapper-debit .inner.inner-d-flex&gt;img {
    margin-top: -80px;
    margin-bottom: 20px;
}

.sc-apply .wrapper-debit {
    margin: 80px auto;
}

.sc-apply .wrapper-debit.branch {
    margin: 0 auto;
}

.icw .btn .icon-more {
    margin-left: 10px;
    border-radius: 25px;
    background-color: #fff;
    width: 25px;
    height: 25px;
    display: inline-block;
    vertical-align: middle;
    position: relative;
    top: -2px;
}

.icw .btn .icon-more:before {
    content: '';
    border-top: 2px solid #09A94E;
    border-left: 2px solid #09A94E;
    width: 8px;
    height: 8px;
    position: absolute;
    right: 0;
    top: 0;
    left: -2px;
    bottom: 0;
    margin: auto;
    transform: rotate(135deg);
}

.icw .sc-apply .btn {
    width: 240px;
}

@media screen and (min-width:767px) {
    .sc-apply .wrapper-debit {
        width: 450px;
    }
}

@media screen and (min-width:991px) {
    .sc-apply .wrapper-debit .inner.inner-d-flex {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
    }

    .sc-apply .wrapper-debit .inner.inner-d-flex&gt;img {
        margin-top: 0;
        margin: 30px;
        margin-left: -10px;
        margin-right: 50px;
    }

    .sc-apply .wrapper-debit {
        margin: 0 auto 30px;
        width: auto;
    }

    .sc-apply .heading .title {
        margin-bottom: 90px;
    }

    /* .sc-apply .wrapper-debit .inner .t-apply {
        margin-bottom: 45px;
    } */
}

/*########### end apply ###########*/

/*########### bottom bar ###########*/
.sc-bottom-bars {
    background-color: #fff;
}

.bottom-bars {
    background-color: #fff;
    width: 100%;
    height: 65px;
    line-height: 65px;
    display: -webkit-flex;
    display: flex;
    justify-content: flex-end;
}

.bottom-bars .list {
    width: 33.3333333%;
    float: left;
    text-align: center;
    border-right: 1px solid #eee;
}

.bottom-bars .list:last-child {
    border-right: 0;
}

.bottom-bars .list a {
    color: #333333;
    font-family: 'kurious-looped';
    font-size: 16px;
    font-weight: 600;
}

.bottom-bars .list a:hover {
    color: #333;
}

.bottom-bars .list a .ic {
    color: #00A850;
    font-size: 25px;
    margin-right: 8px;
    position: relative;
    bottom: 4px;
}

/*########### end bottom bar ###########*/

/*########### all debit card ###########*/
.header-top::before {
    opacity: 1;
    background: #00a850;
    background: linear-gradient(90deg, #00a850 0%, #61d699 100%);
    background-size: 100% auto;
}

.section-product {
    /* padding-top: 100px; */
}

.sc-floating-apply .nav-heading {
    color: #00a94f;
    font-family: 'kurious-looped';
    font-size: 26px;
    font-weight: 600;
    font-style: normal;
    letter-spacing: normal;
    line-height: 1.5;
    text-align: left;
}

@media screen and (min-width:1199px) {
    .section-product {
        /* padding-top: 145px; */
    }
}

/*########### end all debit card ###########*/

/*########### icon ###########*/
.icon-tab::after {
    content: '';
    position: relative;
    display: block;
    width: 16px;
    height: 16px;
    background-size: contain;
    background-position: center;
    filter: invert(38%) sepia(68%) saturate(4242%) hue-rotate(133deg) brightness(102%) contrast(101%);
}

.icon-recommend::after {
    background: url("../img/tab-icon/debit_icon-recommend.svg") no-repeat;
}

.icon-shopping::after {
    background: url("../img/tab-icon/debit_icon-shopping.svg") no-repeat;
}

.icon-insurance::after {
    background: url("../img/tab-icon/debit_icon-insurance.svg") no-repeat;
}

.icon-travel::after {
    background: url("../img/tab-icon/debit_icon-travel.svg") no-repeat;
}

.icon-other::after {
    content: '';
    position: relative;
    display: block;
    width: 16px;
    height: 16px;
    background: url("../img/tab-icon/debit_icon-other.svg") no-repeat;
    background-size: contain;
    background-position: center;
    filter: invert(38%) sepia(68%) saturate(4242%) hue-rotate(133deg) brightness(102%) contrast(101%);
}

/*########### end icon ###########*/

/*########### promotion-list ###########*/
.section-product .cards .card {
    position: relative;
}

.section-product .cards .card .promotion-list {
    position: absolute;
    top: 10px;
    right: 10px;
}

.section-product .cards .card .promotion-list li {
    background-color: #fff;
    padding: 6px 7px 8px;
    border-radius: 25px;
    margin-bottom: 10px;
}

@media screen and (min-width:767px) {
    .section-product .cards .card .promotion-list {
        top: 20px;
        right: 20px;
    }
}

/*########### end promotion-list ###########*/

.business-linkfooter, .wealth-linkfooter, .investor-linkfooter{
    display:none !important;
}

div.inner.show[data-nav='business'], div.inner.show[data-nav='wealth'], div.inner.show[data-nav='investor']   {
    display: none !important;
}

#navigation-footer .footer-breadcrumbs .inner{
    line-height: 56px;
}

#navigation-footer .footer-breadcrumbs .inner i {
    display: inline-block;
}

#navigation-footer .footer-breadcrumbs .inner.show i { top:0;}


.img-card.k-my-trinity {
    background: #99cfc0;
}
.img-card.k-my-trinity img {
    max-width: 280px !important;
    width: 100%;
}
.img-card.k-max-trinity {
    background: #c2eadf;
}
.img-card.k-max-trinity img {
    max-width: 134px !important;
    width: 100%;
}</pre></body></html>