:root {
    --color-blue: #255BE3;
    --color-dark: #0F1632;
    --color-blue-dark: #0F1632;
    --color-blue-mid: #3063E4;
    --color-blue-header: #73C2FC;
    --color-grey-light: #F0F5F7;
    --color-grey-dark: #D3DADD;
    --color-grey-bg: #EEEEEE;
    --color-grey-table: #E6EBED;
    --color-orange: #FF5C0B;
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #888;
}

    ::-webkit-scrollbar-thumb:hover {
        background: #555;
    }

a,
a:active,
a:focus,
a:hover {
}

h1, h2, h3, h4, h5 {
    font-family: 'citi-sans-display';
    font-weight: normal;
}

h1 {
    font-size: 2.75rem
}

h2 {
    font-size: 2.125rem
}

h3 {
    font-size: 1.75rem
}

h4 {
    font-size: 1.3125rem
}

h5 {
    font-size: 1rem;
}

button,
button:active,
button:focus,
button:hover {
    background-color: transparent;
    color: var(--color-blue);
    border: none;
}

.btn {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.text-display {
    font-family: 'citi-sans-display' !important;
}

.text-blue {
    color: var(--color-blue) !important;
}

.text-dark {
    color: var(--dark) !important;
}

.text-blue-dark {
    color: var(--color-blue-dark) !important;
}

.text-blue-mid {
    color: var(--color-blue-mid) !important;
}

.text-grey-light {
    color: var(--color-grey-light) !important;
}

.text-grey-dark {
    color: var(--color-grey-dark) !important;
}

.text-grey-bg {
    color: var(--color-grey-bg) !important;
}

.bg-blue {
    background-color: var(--color-blue) !important;
}

.bg-dark {
    background-color: var(--color-dark) !important;
}

.bg-blue-dark {
    background-color: var(--color-blue-dark) !important;
}

.bg-blue-mid {
    background-color: var(--color-blue-mid) !important;
}

.bg-blue-header {
    background-color: var(--color-blue-header) !important;
}

.bg-grey-light {
    background-color: var(--color-grey-light) !important;
}

.bg-grey-dark {
    background-color: var(--color-grey-dark) !important;
}

.bg-grey-bg {
    background-color: var(--color-grey-bg) !important;
}

.bg-orange {
    background-color: var(--color-orange) !important;
}

.bg-white {
    background-color: #fff !important;
}

.text-white hr {
    border: none;
    border-bottom: solid 1px #fff;
}


.shadow-top {
    box-shadow: 0 -10px 10px rgba(0,0,0,.3);
}

.seperator {
    position: relative;
}

.rounded {
    border-radius: .5rem !important;
    overflow: hidden;
}

.redeem-miles {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
}

    .redeem-miles li {
        display: none;
        padding: 0 .5rem .5rem .5rem;
        margin: 0 4px .5rem 4px;
        width: calc(50% - 8px);
        font-size: .8rem;
        background-color: var(--color-grey-bg);
    }

        .redeem-miles li .logoAmt {
            font-size: .75rem;
        }

        .redeem-miles li.show {
            display: block;
        }

        .redeem-miles li .logo {
            margin: 0 -.5rem;
        }

        .redeem-miles li img {
            width: 100%;
        }

.redeem-miles-scroll {
    max-height: 400px;
    overflow-y: auto;
}

#banner {
    height: 144vw;
    font-size: 28px;
    position: relative;
    background-image: url('../img/banner-m.jpg');
    margin-bottom: 25.476vw;
    background-position: center center;
    background-size: 100%;
    background-repeat: no-repeat;
}

    #banner h1 {
        font-size: 44px
    }

    #banner .cardface {
        position: absolute;
        bottom: -25.476vw;
        left: 10vw;
        width: 80vw;
        height: 50.952vw;
    }

.icon {
    width: 60px;
    height: 60px;
    display: block;
    margin: 0 auto 1.5rem auto;
} 
.mobwrap {
    max-width: 100%;
    overflow-x: auto;
}

.cashrebate,
.cashrebate table {
    margin-bottom: 0;
    min-width: 960px;
    width: 100%;
}

    .cashrebate th {
        line-height: 1rem;
    }

    .cashrebate td, th {
        border-right: solid 1px #fff;
        border-bottom: solid 1px #fff;
        text-align: center;
        padding: .75rem;
    }

    .cashrebate .plus,
    .cashrebate .equals {
        position: relative;
    }

        .cashrebate .plus:after,
        .cashrebate .equals:after {
            position: absolute;
            width: 1.5rem;
            height: 1.5rem;
            border-radius: .75rem;
            background-color: #fff;
            color: var(--color-dark);
            right: -.75rem;
            top: .75rem;
            display: block;
            z-index: 1;
        }

        .cashrebate .plus:after {
            content: '+'
        }

        .cashrebate .equals:after {
            content: '=';
        }

    .cashrebate td {
        background-color: var(--color-grey-table);
    }

    .cashrebate th {
        border-top: none;
    }

    .cashrebate tr:last-of-type td {
        border-bottom: none;
    }

    .cashrebate th:last-of-type,
    .cashrebate td:last-of-type {
        border-right: none;
    }

.tabsection .nav-item {
    width: 100%;
}

.tabsection .nav-tabs .nav-link {
    background-color: var(--color-grey-dark);
    border: none;
    border-radius: 0;
    position: relative;
    color: var(--color-dark);
    position: relative;
}


    .tabsection .nav-tabs .nav-link.active {
        background-color: #fff;
        color: var(--color-blue);
        width: calc(100% + 2px);
        margin-left: -1px;
    }

        .tabsection .nav-tabs .nav-link.active:after {
            position: absolute;
            top: calc(100% - 3px);
            left: 0;
            height: 3px;
            content: '';
            display: block;
            background-color: var(--color-blue);
            width: 100%;
            display: block !important;
        }


#liability-on-unauthorised-charges {
    position: absolute;
    bottom: 75%;
    left: 1rem;
    min-height: 100px;
    padding: 2rem;
    box-shadow: 0 0 6px rgba(0,0,0.3);
    background-color: #fff;
    text-align: left;
    width: calc(100% - 2rem);
    z-index: 1;
}

    #liability-on-unauthorised-charges .close {
        position: absolute;
        top: 1rem;
        right: 1rem;
        font-size: .75rem;
    }

#smsactivate {
    position: absolute;
    bottom: 75%;
    left: 1rem;
    min-height: 100px;
    padding: 2rem;
    box-shadow: 0 0 6px rgba(0,0,0.3);
    background-color: #fff;
    text-align: left;
    width: calc(100% - 2rem);
    z-index: 1;
}

    #smsactivate .close {
        position: absolute;
        top: 1rem;
        right: 1rem;
        font-size: .75rem;
    }


#banner-sticky.stuck {
    position: fixed;
    bottom: 0;
    left: 0;
    margin: 0;
    right: 0;
}
@media (min-width:576px) {
    #banner {
        margin-bottom: 110px;
    }

        #banner .cardface {
            position: absolute;
            bottom: -110px;
            left: calc(50% - 173px );
            width: 347px;
            height: 221px;
        }
    .tabsection .nav-item {
        width: 20%;
    }

    .tabsection .nav-tabs .nav-link:after {
        content: close-quote;
        position: absolute;
        top: .75rem;
        bottom: .75rem;
        right: 0;
        width: 1px;
        background-color: var(--color-dark);
    }

    .tabsection .nav-tabs .nav-item:last-of-type .nav-link:after {
        display: none;
    }
}

@media (min-width:768px) {
    #banner {
        height: 65.10416vw;
        margin-bottom: 110px;
        background-image: url('../img/banner-t.jpg');
    }


    .seperator {
        position: relative;
    }

        .seperator:after {
            content: '';
            position: absolute;
            top: 15%;
            bottom: 15%;
            right: 0;
            width: 1px;
            display: block;
            background-color: var(--color-dark);
        }

        .seperator:last-of-type:after {
            display: none;
        }

    .redeem-miles li {
        width: calc(33.333% - 8px);
    } 


    #liability-on-unauthorised-charges {
        bottom: 75%;
        left: 30%;
        padding: 2rem;
        width: 350px;
    }


    #smsactivate {
        bottom: 20%;
        left: 55%;
        padding: 2rem;
        width: 350px;
    }
}

@media (min-width:992px) {
}

@media (min-width:1200px) {
    #banner {
        height: 38.194vw;
        background-image: url('../img/banner-d.jpg');
    }

    .redeem-miles li {
        width: calc(25% - 8px);
    }
}
