html, body {
    height: 100%;
    font-family: 'SF Pro Display', sans-serif;
    overflow-x: hidden;
    overflow-y: auto;
    background-color: #eff4f5;
}

a {
    color: inherit;
    text-decoration: none;
    transition: all .3s;
}
a:hover {
    color: inherit;
    text-underline-offset: 3px;
}

p, ul li, ol li {
    font-size: 16px;
    line-height: 1.8;
    font-weight: 300;
}

h1, h2, h3, h4 {
    padding: 20px 0;
    line-height: 1.5;
}

/* GENERAL */

:root {
    --primaryTextColor: #263d4b;
    --green: #5cca1b;
    --greenHover: #05aa80;
}

.site {
    width: 100%;
    /* height: 100vh; */
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* LOGIN */

.login-box {
    width: 100%;
    min-height: calc(100vh - 270px);
    display: flex;
    padding-top: 15px;
    padding-bottom: 15px;
}

.login-box .photo {
    height: 100%;
}
.login-box .photo > div {
    display: block;
    width: 100%;
    height: 100%;
    background-color: #cad6d7;
    background-size: cover;
    background-position: center;
    clip-path: polygon(0 0, 100% 0, calc(100% - 200px) 100%, 0% 100%);
}

.login-box .form {
    padding-top: 80px;
    padding-bottom: 80px;
    margin-left: -14%;
}
.login-box.ver-2 .form {
    padding-left: 80px;
    margin-left: 0;
}
.login-box .box,
.login-box .additional-content .content {
    max-width: 540px;
    padding: 55px 80px 30px 80px;
    background-color: #FFF;
    border: 1px solid #d5deeb;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(57, 74, 81, .05);
}
.login-box .additional-content .content {
    width: 100%;
    max-width: initial;
    padding: 15px;
    margin: 0 auto;
}
.login-box .logo {
    padding-bottom: 20px;
}
.login-box .logo img {
    max-width: 100%;
    margin-bottom: 30px;
}
.login-box .logo h2 {
    color: var(--primaryTextColor);
    font-size: 30px;
    font-weight: 600;
    line-height: 100%;
    letter-spacing: 0;
    padding: 0 0 15px 0;
    margin: 0;
}
.login-box .logo p {
    color: #45545d;
    font-size: 18px;
    font-weight: 300;
    line-height: 24px;
    letter-spacing: 0.16px;
    padding: 0;
    margin: 0;
}
.login-box .form-step-2 {
    display: none !important;
}
.login-box .form-label {
    font-size: 15px;
}
.login-box .form-otp {
    font-size: 24px;
    font-weight: 600;
}
.login-box .form-buttons {
    position: relative;
    column-gap: 10px;
    padding: 30px 0;
    margin: 20px 0 0 0;
    background-color: #f6f9fa;
}
.login-box .form-buttons::before {
    content: "";
    display: block;
    width: calc(100% + 160px);
    height: 100%;
    background-color: #f6f9fa;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    position: absolute;
    bottom: 0; left: -80px;
}
.login-box button.primary {
    width: 100%;
    font-size: 19px;
}
.login-box .form-security .form-submit {
    display: flex;
    column-gap: 10px;
    margin-top: 10px;
}
.login-box .form-security button.primary,
.login-box .form-security button.secondary {
    width: 50%;
    min-width: unset;
}
.login-box .form-links {
    display: flex;
    justify-content: center;
}
.login-box .form-links .link {
    position: relative;
    text-align: center;
}
.login-box .form-links .link a {
    position: relative;
    color: var(--primaryTextColor);
    font-size: 15px;
    font-weight: 300;
    line-height: 100%;
    letter-spacing: 0.15px;
    text-decoration: underline;
    text-underline-offset: 3px;
    padding: 0;
    margin: 0;
}
.login-box .form-links .link:not(:last-of-type) {
    padding-right: 19px;
    margin-right: 15px;
}
.login-box .form-links .link:not(:last-of-type)::after {
    content: "|";
    position: absolute;
    right: 0;
}
.login-box .form-links .link a:hover {
    color: var(--greenHover);
    text-decoration: none;
}

.login-box .form-enroll {
    margin-left: -20%;
}
.login-box .form-enroll .box {
    max-width: 820px;
    padding-bottom: 0;
}
.login-box .form-enroll .logo,
.login-box .form-security .logo {
    padding-bottom: 30px;
}
.login-box .form-enroll button.primary {
    width: auto;
}

.login-box .additional-content {
    padding-top: 80px;
    padding-bottom: 80px;
    padding-right: 80px;
}
.login-box .additional-content .content iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* FORM */

.form-group {
    position: relative;
    display: inline-block;
    width: 100%;
    margin-bottom: 18px;
}

.form-label {
    position: relative;
    color: var(--primaryTextColor);
    font-size: 14px;
    font-weight: 300;
    line-height: 100%;
    letter-spacing: 0.13px;
    padding: 0 0 0 10px;
    margin: 0;
    z-index: 9;
}
.form-control {
    width: 100%;
    height: 60px;
    color: var(--primaryTextColor);
    font-size: 17px;
    font-weight: 300;
    line-height: 100%;
    letter-spacing: 0.5px;
    padding: 0 25px;
    margin: 0;
    background-color: #f9fcfc;
    border: 1px solid #cad6d7;
    border-radius: 5px;
    outline: none;
    transition: all .3s;
}
textarea.form-control {
    min-height: 260px;
    padding-top: 25px;
    padding-bottom: 25px;
    resize: none;
}
select.form-control {
    padding-left: 20px;
    background: #f9fcfc url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pjxzdmcgdmlld0JveD0iMCAwIDk2IDk2IiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjx0aXRsZS8+PHBhdGggZD0iTTgxLjg0NTcsMjUuMzg3NmE2LjAyMzksNi4wMjM5LDAsMCwwLTguNDUuNzY3Nkw0OCw1Ni42MjU3bC0yNS4zOTYtMzAuNDdhNS45OTksNS45OTksMCwxLDAtOS4yMTE0LDcuNjg3OUw0My4zOTQzLDY5Ljg0NTJhNS45OTY5LDUuOTk2OSwwLDAsMCw5LjIxMTQsMEw4Mi42MDc0LDMzLjg0MzFBNi4wMDc2LDYuMDA3NiwwLDAsMCw4MS44NDU3LDI1LjM4NzZaIi8+PC9zdmc+') no-repeat;
    background-position: right 25px center;
    background-size: 12px;
    appearance: none;
}
.form-control:focus {
    background-color: #f9fcfc;
    border-color: var(--greenHover);
    box-shadow: unset;
}
.form-control:disabled {
    background-color: #f9fcfc;
}

.toggle-password {
    width: 31px;
    height: 31px;
    display: flex !important;
    justify-content: center;
    align-items: center;
    color: rgba(38, 38, 50, .8);
    font-size: 12px;
    padding-top: 1px;
    background-color: #FFF;
    border-radius: 50%;
    position: absolute;
    right: 25px;
    bottom: 16px;
    cursor: pointer;
}

.input-group {
    box-shadow: 0 10px 25px rgba(28, 36, 63, .02);
}
.input-group-text {
    color: #45464e;
    padding: 0 20px;
    background-color: #FFF;
    border-color: #e7eaf4;
}
.input-group-prepend .input-group-text {
    border-top-left-radius: 5px !important;
    border-bottom-left-radius: 5px !important;
}
.input-group-append .input-group-text {
    border-top-right-radius: 5px !important;
    border-bottom-right-radius: 5px !important;
}

.form-group.custom-checkbox {
    padding-left: 28px;
    margin-left: 20px;
}
.form-group.custom-checkbox .custom-control-label {
    color: var(--primaryTextColor);
    font-size: 16px;
    font-weight: 300;
    letter-spacing: 0.15px;
    text-transform: unset;
    border-bottom: 0;
}
.form-group.custom-checkbox .custom-control-label::before {
    background-color: #f9fcfc;
    border: 1px solid #cad6d7;
    border-radius: 3px;
    top: 3px;
    left: -28px;
}
.form-group.custom-checkbox.custom-radio .custom-control-label::before {
    border-radius: 50%;
}
.form-group.custom-checkbox .custom-control-label::after {
    top: 3px;
    left: -28px;
    background-image: unset;
}
.form-group.custom-checkbox .custom-control-input:checked ~ .custom-control-label::before {
    background-color: #5bca24;
    border-color: var(--greenHover);
}
.form-group.custom-checkbox .custom-control-input:focus ~ .custom-control-label::before {
    -webkit-box-shadow: 0 0 0 1px #fff, 0 0 0 3px rgba(5, 170, 128, .4);
    box-shadow: 0 0 0 1px #fff, 0 0 0 3px rgba(5, 170, 128, .4);
}
.form-group.custom-checkbox .custom-control-label a {
    text-decoration: underline;
    text-underline-offset: 3px;
}
.form-group.custom-checkbox .custom-control-label a:hover {
    text-decoration: none;
}

.form-attachments a {
    color: #4b5064;
    font-size: 14px;
    font-weight: 300;
    line-height: 100%;
    letter-spacing: 0.07px;
    padding: 0;
    margin: 10px 0 0 8px;
}
.form-attachments a i {
    color: var(--main);
    font-size: 13px;
    padding-right: 6px;
}
.form-attachments a:not(:first-of-type) {
    margin-left: 30px;
}
.form-attachments a:hover {
    color: var(--main);
    text-decoration: none;
}

.form-close {
    color: rgba(0, 0, 0, .8);
    font-size: 14px;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: 0;
    text-transform: uppercase;
    padding: 0;
    margin: 0 30px 0 0 !important;
    background-color: transparent;
    border: 0;
    outline: none;
    cursor: pointer;
}
.form-close:hover,
.form-close:focus {
    color: #000;
    outline: none;
}

.form-toggle {
    font-size: 0;
    margin: 0 0 20px 30px;
    padding: 0;
}
.form-toggle input {
    opacity: 0;
    position: absolute;
}
.form-toggle input + label {
    position: relative;
    display: inline-block;
    user-select: none;
    -moz-transition: 0.4s ease;
    -o-transition: 0.4s ease;
    -webkit-transition: 0.4s ease;
    transition: 0.4s ease;
    -webkit-tap-highlight-color: transparent;
    height: 26px;
    width: 43px;
    margin: 0;
    border: 1px solid #d9dded;
    border-radius: 60px;
    box-shadow: 0 5px 10px rgba(28, 36, 63, .1);
}
.form-toggle input + label:before {
    content: "";
    position: absolute;
    display: block;
    -moz-transition: 0.2s cubic-bezier(0.24, 0, 0.5, 1);
    -o-transition: 0.2s cubic-bezier(0.24, 0, 0.5, 1);
    -webkit-transition: 0.2s cubic-bezier(0.24, 0, 0.5, 1);
    transition: 0.2s cubic-bezier(0.24, 0, 0.5, 1);
    height: 26px;
    width: 43px;
    top: 0;
    left: 0;
    border-radius: 30px;
}
.form-toggle input + label:after {
    content: "";
    position: absolute;
    display: block;
    -moz-transition: 0.35s cubic-bezier(0.54, 1.6, 0.5, 1);
    -o-transition: 0.35s cubic-bezier(0.54, 1.6, 0.5, 1);
    -webkit-transition: 0.35s cubic-bezier(0.54, 1.6, 0.5, 1);
    transition: 0.35s cubic-bezier(0.54, 1.6, 0.5, 1);
    background: #ced3e6;
    height: 20px;
    width: 20px;
    top: 2px;
    left: 2px;
    border-radius: 50%;
}
.form-toggle input:checked + label:before {
    -moz-transition: width 0.2s cubic-bezier(0, 0, 0, 0.1);
    -o-transition: width 0.2s cubic-bezier(0, 0, 0, 0.1);
    -webkit-transition: width 0.2s cubic-bezier(0, 0, 0, 0.1);
    transition: width 0.2s cubic-bezier(0, 0, 0, 0.1);
}
.form-toggle input:checked + label:after {
    left: 19px;
    background: var(--green);
}

/* BUTTONS */

button.primary,
button.secondary,
button.tertiary {
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-width: 200px;
    height: 60px;
    color: #FFF;
    font-size: 18px;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: 0.08px;
    padding: 0 30px;
    margin: 0;
    background: rgb(0,169,129);
    background: -moz-linear-gradient(90deg, rgba(0,169,129,1) 0%, rgba(92,202,33,1) 55%, rgba(49,186,72,1) 100%);
    background: -webkit-linear-gradient(90deg, rgba(0,169,129,1) 0%, rgba(92,202,33,1) 55%, rgba(49,186,72,1) 100%);
    background: linear-gradient(90deg, rgba(0,169,129,1) 0%, rgba(92,202,33,1) 55%, rgba(49,186,72,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#00a981",endColorstr="#31ba48",GradientType=1);
    background-size: 100%;
    border: 0;
    border-radius: 7px;
    outline: none;
    cursor: pointer;
    transition: all .3s;
}
button.primary:hover {
    background-size: 200%;
}
button.primary img,
button.tertiary img {
    padding-right: 12px;
}

button.secondary {
    color: #676767;
    background: #d2dcde;
}
button.secondary:hover {
    background: #c9d3d5;
}
button.secondary i {
    position: relative;
    top: -1px;
    color: var(--green);
    font-size: 12px;
    padding-right: 6px;
}

button.tertiary {
    color: #27b353;
    background: transparent;
    border: 1px solid rgb(0,169,129);
}
button.tertiary:hover {
    color: #213947;
}
button.tertiary img {
    filter: brightness(0) saturate(100%) invert(54%) sepia(82%) saturate(433%) hue-rotate(86deg) brightness(88%) contrast(90%);
}

button.smaller {
    min-width: 130px;
    height: 50px !important;
}

button.details {
    width: 24px;
    height: 24px;
    padding: 0;
    background-color: #FFF;
    border: 0;
    border-radius: 50%;
    outline: none;
    cursor: pointer;
}
button.details i {
    color: var(--green);
    font-family: "Font Awesome 6 Free";
    font-size: 11px;
    font-weight: 700;
}

/* MODAL */

.modal-dialog {
    max-width: 930px;
}
.modal-content {
    position: relative;
    padding: 0;
    background-color: #FFF;
    border: 1px solid #d3deeb;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(57, 74, 81, .03);
}
.modal-header, .modal-body, .modal-footer {
    padding: 0;
    border: 0;
}
.modal-header {
    position: relative;
    width: 100%;
    flex-direction: column;
    padding: 40px 70px;
    background-color: #f6f9fa;
}
.modal-header > h4 {
    width: 100%;
    color: var(--green);
    font-size: 25px;
    font-weight: 600;
    line-height: 100%;
    letter-spacing: -0.12px;
    padding: 0;
    margin: 0;
}
.modal-header > p {
    color: rgba(0, 0, 0, .6);
    font-size: 16px;
    font-weight: 300;
    line-height: 24px;
    letter-spacing: -0.25px;
    padding: 0;
    margin: 0;
}
.modal-header > button.close {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--primaryTextColor);
    font-size: 26px;
    background-color: #fff;
    border-radius: 50%;
    position: absolute;
    top: 48px;
    right: 45px;
    outline: none;
    opacity: 1;
}
.modal-body {
    padding: 40px 70px 25px 70px;
}
.modal-body p {
    color: #000;
    font-size: 17px;
    font-weight: 300;
    line-height: 100%;
    letter-spacing: -0.25px;
    padding: 0;
    margin: 0 0 35px 0;
}
.modal-body ul {
    list-style: none;
    padding: 0 0 0 20px;
    margin: 0;
    columns: 2;
}
.modal-body ul > li {
    position: relative;
    color: #000;
    font-size: 15px;
    font-weight: 300;
    line-height: 37px;
    letter-spacing: -0.22px;
    padding: 0 0 0 20px;
    margin: 0;
}
.modal-body ul > li::before {
    content: "\f054";
    color: var(--main);
    font-family: "Font Awesome 6 Free";
    font-size: 10px;
    font-weight: 700;
    position: absolute;
    left: 0;
}
.modal-footer {
    position: relative;
    justify-content: center;
    padding: 30px 0;
    margin: 0;
    background-color: #f6f9fa;
}

.modal-dialog-smaller {
    max-width: 480px;
}
.modal-dialog-smaller .modal-header {
    padding-left: 35px;
}
.modal-dialog-smaller .modal-body {
    padding: 25px 35px;
}
.modal-dialog-smaller .table.table-smaller tbody::before {
    display: none;
}

/* FOOTER */

.footer {
    position: relative;
    flex-shrink: 0;
    padding: 51px 35px;
    background-color: #FFF;
}

.footer ul.links {
    display: flex;
    margin: 0;
    padding: 0;
    list-style: none;
}
.footer ul.links li {
    position: relative;
    float: left;
    background: none;
    padding: 0 16px 0 15px;
}
.footer ul.links li::after {
    content: '|';
    color: rgba(0, 0, 0, .5);
    position: absolute;
    right: -1px;
    top: -1px;
}
.footer ul.links li:first-child {
    padding-left: 0;
}
.footer ul.links li:last-child {
    padding-right: 0;
}
.footer ul.links li:last-child::after {
    display: none;
}
.footer ul.links li a {
    color: rgba(0, 0, 0, .75);
    font-size: 16px;
    font-weight: 300;
    line-height: 100%;
    letter-spacing: 0.48px;
    padding: 0;
    margin: 0;
}
.footer ul.links li a:hover {
    text-decoration: underline;
    text-underline-offset: 3px;
}

.footer p.description {
    color: rgba(0, 0, 0, .4);
    font-size: 14px;
    font-weight: 300;
    line-height: 23px;
    letter-spacing: 0.28px;
    padding: 24px 0 29px 0;
    margin: 0;
}
.footer p.highlight {
    color: rgba(0, 0, 0, 1);
    font-size: 15px;
    font-weight: 300;
    line-height: 100%;
    letter-spacing: 0.3px;
    padding: 21px 0 5px 0;
    margin: 0;
}

.footer span.version,
.footer span.login-time {
    position: relative;
    display: block;
    color: rgba(0, 0, 0, .65);
    font-size: 13px;
    font-weight: 300;
    line-height: 100%;
    letter-spacing: 0.26px;
    padding: 0 30px 0 0;
    margin: 0;
}
.footer span.version,
.footer span.login-time time {
    font-weight: 400;
}
.footer span.login-time::before {
    content: "|";
    color: rgba(0, 0, 0, .3);
    position: absolute;
    top: -1px; left: -16px;
}

.footer h4 {
    color: rgba(0, 0, 0, .75);
    font-size: 16px;
    font-weight: 400;
    line-height: 100%;
    letter-spacing: 0.48px;
    padding: 0 0 24px 0;
    margin: 0;
}

.footer .phone {
    display: block;
    color: #000;
    font-size: 23px;
    font-weight: 300;
    line-height: 100%;
    letter-spacing: 0.46px;
    padding: 0;
    margin: 0;
}
.footer .phone:hover {
    color: var(--greenHover);
    text-decoration: none;
}

.footer .email {
    display: inline-block;
    color: var(--green);
    font-size: 15px;
    font-weight: 300;
    line-height: 100%;
    letter-spacing: 0.3px;
    text-decoration: underline;
    text-underline-offset: 3px;
    padding: 0;
    margin: 0;
}
.footer .email:hover {
    text-decoration: none;
}

.footer address {
    display: block;
    color: rgba(0, 0, 0, .65);
    font-size: 14px;
    font-weight: 300;
    line-height: 20px;
    letter-spacing: 0.28px;
    padding: 0;
    margin: 0;
}

/* STICKY NAV */

.sticky-nav {
    position: fixed;
    bottom: 0; left: 0;
    width: 100%;
}
.sticky-nav .content {
    background-color: #FFF;
}

.sticky-nav .content ul {
    display: flex;
    justify-content: space-around;
    list-style: none;
    padding: 15px 0;
    margin: 0;
    box-shadow: 0 0 10px rgba(0, 0, 0, .1);
}
.sticky-nav .content ul > li {
    font-size: 0;
    text-align: center;
    margin: 0 10px;
}
.sticky-nav .content ul > li:nth-child(n+6) {
    display: none;
}
.sticky-nav .content ul > li > a {
    display: inline-block;
    color: #6c7a83;
    font-size: 12px;
    font-weight: 400;
    line-height: 100%;
    letter-spacing: 0.12px;
    padding: 0;
    margin: 0;
}
.sticky-nav .content ul > li.current > a {
    color: var(--primaryTextColor);
}
.sticky-nav .content ul > li > a img {
    width: auto;
    height: 19px;
    margin-bottom: 7px;
}
.sticky-nav .content ul > li > a span {
    display: block;
}

/* HEADER */

.header {
    flex-shrink: 0;
    padding: 30px 50px;
    background-color: #FFF;
    box-shadow: 0 15px 30px rgba(57, 74, 81, .02);
}
.header.mobile {
    padding-top: 20px;
    padding-bottom: 20px;
}

.header .logo {
    width: 314px;
}
.header.mobile .logo {
    width: auto;
    order: 2;
}
.header .logo img {
    max-height: 68px;
    transition: all .3s;
}

.header nav.primary {
    display: flex;
    align-items: center;
}
.header.mobile nav.primary {
    width: 105px;
    order: 1;
}
.header nav.primary ul.level-0 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    row-gap: 8px;
    list-style: none;
    padding: 15px 20px 15px 20px;
    margin: 0;
}
.header nav.primary ul.level-0 > li {
    margin: 0 15px;
}
.header nav.primary ul.level-0 > li > a {
    display: inline-block;
    color: #213947;
    font-size: 17px;
    font-weight: 300;
    line-height: 100%;
    letter-spacing: 0.34px;
    white-space: nowrap;
    padding: 0;
    margin: 0;
}
.header nav.primary ul.level-0 > li > a img {
    width: auto;
    height: 19px;
    margin-right: 10px;
}
.header nav.primary ul.level-0 > li > a i.menu-icon {
    position: relative;
    display: inline-block;
    width: 22px;
    height: 19px;
    margin-right: 10px;
    top: 6px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}
.header nav.primary ul.level-0 > li > a i.icon-st-home { background-image: url('../img/icons/icon-menu-accounts.svg'); }
.header nav.primary ul.level-0 > li > a i.icon-st-home-active { background-image: url('../img/icons/icon-menu-accounts-active.svg'); }
.header nav.primary ul.level-0 > li > a i.icon-st-amplifi-rewards { background-image: url('../img/icons/icon-menu-amplifi-rewards.svg'); }
.header nav.primary ul.level-0 > li > a i.icon-st-amplifi-rewards-active { background-image: url('../img/icons/icon-menu-amplifi-rewards-active.svg'); }
.header nav.primary ul.level-0 > li > a i.icon-st-applications { background-image: url('../img/icons/icon-menu-applications.svg'); }
.header nav.primary ul.level-0 > li > a i.icon-st-applications-active { background-image: url('../img/icons/icon-menu-applications-active.svg'); }
.header nav.primary ul.level-0 > li > a i.icon-st-bill-pay { background-image: url('../img/icons/icon-menu-bill-pay.svg'); }
.header nav.primary ul.level-0 > li > a i.icon-st-bill-pay-active { background-image: url('../img/icons/icon-menu-bill-pay-active.svg'); }
.header nav.primary ul.level-0 > li > a i.icon-st-credit-card { background-image: url('../img/icons/icon-menu-credit-card.svg'); }
.header nav.primary ul.level-0 > li > a i.icon-st-credit-card-active { background-image: url('../img/icons/icon-menu-credit-card-active.svg'); }
.header nav.primary ul.level-0 > li > a i.icon-st-credit-score { background-image: url('../img/icons/icon-menu-credit-score.svg'); }
.header nav.primary ul.level-0 > li > a i.icon-st-credit-score-active { background-image: url('../img/icons/icon-menu-credit-score-active.svg'); }
.header nav.primary ul.level-0 > li > a i.icon-st-documents { background-image: url('../img/icons/icon-menu-documents.svg'); }
.header nav.primary ul.level-0 > li > a i.icon-st-documents-active { background-image: url('../img/icons/icon-menu-documents-active.svg'); }
.header nav.primary ul.level-0 > li > a i.icon-st-fb { background-image: url('../img/icons/icon-menu-fb.svg'); }
.header nav.primary ul.level-0 > li > a i.icon-st-fb-active { background-image: url('../img/icons/icon-menu-fb-active.svg'); }
.header nav.primary ul.level-0 > li > a i.icon-st-freeze-card { background-image: url('../img/icons/icon-menu-freeze-card.svg'); }
.header nav.primary ul.level-0 > li > a i.icon-st-freeze-card-active { background-image: url('../img/icons/icon-menu-freeze-card-active.svg'); }
.header nav.primary ul.level-0 > li > a i.icon-st-link-external-accounts { background-image: url('../img/icons/icon-menu-link-external-accounts.svg'); }
.header nav.primary ul.level-0 > li > a i.icon-st-link-external-accounts-active { background-image: url('../img/icons/icon-menu-link-external-accounts-active.svg'); }
.header nav.primary ul.level-0 > li > a i.icon-st-locations { background-image: url('../img/icons/icon-menu-locations.svg'); }
.header nav.primary ul.level-0 > li > a i.icon-st-locations-active { background-image: url('../img/icons/icon-menu-locations-active.svg'); }
.header nav.primary ul.level-0 > li > a i.icon-st-money-desktop { background-image: url('../img/icons/icon-menu-money-desktop.svg'); }
.header nav.primary ul.level-0 > li > a i.icon-st-money-desktop-active { background-image: url('../img/icons/icon-menu-money-desktop-active.svg'); }
.header nav.primary ul.level-0 > li > a i.icon-st-mortgage { background-image: url('../img/icons/icon-menu-mortgage.svg'); }
.header nav.primary ul.level-0 > li > a i.icon-st-mortgage-active { background-image: url('../img/icons/icon-menu-mortgage-active.svg'); }
.header nav.primary ul.level-0 > li > a i.icon-st-my-rewards { background-image: url('../img/icons/icon-menu-my-rewards.svg'); }
.header nav.primary ul.level-0 > li > a i.icon-st-my-rewards-active { background-image: url('../img/icons/icon-menu-my-rewards-active.svg'); }
.header nav.primary ul.level-0 > li > a i.icon-st-p2p { background-image: url('../img/icons/icon-menu-p2p.svg'); }
.header nav.primary ul.level-0 > li > a i.icon-st-p2p-active { background-image: url('../img/icons/icon-menu-p2p-active.svg'); }
.header nav.primary ul.level-0 > li > a i.icon-st-privacy-policy { background-image: url('../img/icons/icon-menu-privacy-policy.svg'); }
.header nav.primary ul.level-0 > li > a i.icon-st-privacy-policy-active { background-image: url('../img/icons/icon-menu-privacy-policy-active.svg'); }
.header nav.primary ul.level-0 > li > a i.icon-st-profile-settings { background-image: url('../img/icons/icon-menu-profile-settings.svg'); }
.header nav.primary ul.level-0 > li > a i.icon-st-profile-settings-active { background-image: url('../img/icons/icon-menu-profile-settings-active.svg'); }
.header nav.primary ul.level-0 > li > a i.icon-st-rates { background-image: url('../img/icons/icon-menu-rates.svg'); }
.header nav.primary ul.level-0 > li > a i.icon-st-rates-active { background-image: url('../img/icons/icon-menu-rates-active.svg'); }
.header nav.primary ul.level-0 > li > a i.icon-st-reorder-checks { background-image: url('../img/icons/icon-menu-reorder-checks.svg'); }
.header nav.primary ul.level-0 > li > a i.icon-st-reorder-checks-active { background-image: url('../img/icons/icon-menu-reorder-checks-active.svg'); }
.header nav.primary ul.level-0 > li > a i.icon-st-statements { background-image: url('../img/icons/icon-menu-statements.svg'); }
.header nav.primary ul.level-0 > li > a i.icon-st-statements-active { background-image: url('../img/icons/icon-menu-statements-active.svg'); }
.header nav.primary ul.level-0 > li > a i.icon-st-stop-payments { background-image: url('../img/icons/icon-menu-stop-payments.svg'); }
.header nav.primary ul.level-0 > li > a i.icon-st-stop-payments-active { background-image: url('../img/icons/icon-menu-stop-payments-active.svg'); }
.header nav.primary ul.level-0 > li > a i.icon-st-terms-conditions { background-image: url('../img/icons/icon-menu-terms-conditions.svg'); }
.header nav.primary ul.level-0 > li > a i.icon-st-terms-conditions-active { background-image: url('../img/icons/icon-menu-terms-conditions-active.svg'); }
.header nav.primary ul.level-0 > li > a i.icon-st-money { background-image: url('../img/icons/icon-menu-transfers.svg'); }
.header nav.primary ul.level-0 > li > a i.icon-st-money-active { background-image: url('../img/icons/icon-menu-transfers-active.svg'); }
.header nav.primary ul.level-0 > li > a i.icon-st-unfreeze-card { background-image: url('../img/icons/icon-menu-unfreeze-card.svg'); }
.header nav.primary ul.level-0 > li > a i.icon-st-unfreeze-card-active { background-image: url('../img/icons/icon-menu-unfreeze-card-active.svg'); }

.header nav.primary ul.level-0 > li > a span {
    position: relative;
    top: 2px;
}
.header nav.primary ul.level-0 > li > a:hover {
    text-decoration: none;
}
.header nav.primary ul.level-0 > li > a:hover span {
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 4px;
}
.header nav.primary ul.level-0 > li.current > a span {
    font-weight: 600;
    text-decoration: underline;
    text-decoration-color: #68bf3d;
    text-decoration-thickness: 2px;
    text-underline-offset: 4px;
}

.header .quick-links .secondary button.navbar-toggler {
    display: block;
    padding: 10px 30px;
    margin: 3px 19px 0 0;
    border: 0;
    border-left: 1px solid #e9edee;
    border-right: 1px solid #e9edee;
    outline: none;
}
.header .quick-links .secondary button.navbar-toggler span,
.header .quick-links .tertiary ul > li > a span {
    display: block;
    color: rgba(108, 122, 131, .9);
    font-size: 11px;
    font-weight: 300;
    line-height: 100%;
    letter-spacing: 1.1px;
    text-transform: uppercase;
    padding: 6px 0 0 0;
    margin: 0;
    transition: all .3s;
}
.header .quick-links .secondary button.navbar-toggler span {
    padding-top: 12px;
}
.header .quick-links .secondary button.navbar-toggler:hover span,
.header .quick-links .secondary button.navbar-toggler.active span,
.header .quick-links .tertiary ul > li > a:hover span,
.header .quick-links .tertiary ul > li.current > a span {
    color: #68bf3d;
}
.header .quick-links .tertiary ul > li.current > a span {
    font-weight: 500;
}

.header .quick-links .secondary ul.level-1 {
    width: 330px;    
    list-style: none;
    padding: 0 0 20px 0;
    margin: 0;
    background-color: #fff;
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
    box-shadow: 0 5px 50px rgba(36, 38, 58, .1);
    position: absolute;
    top: 115px;
    right: -20px;
    transform-origin: 50% 0;
    transform: scaleY(0);
    transition-duration: 250ms;    
    -ms-overflow-style: none;
    scrollbar-width: none;
    z-index: 1020;
}
.header .quick-links .secondary ul.level-1::-webkit-scrollbar { 
    display: none;
}
.header.mobile .quick-links .secondary ul.level-1 {
    max-height: 80vh;
    top: 60px;
    padding-top: 20px;
    overflow-y: auto;
}
.header .quick-links .secondary ul.level-1.active {
    transform: scaleY(1);
} 
.header .quick-links .secondary ul.level-1::before {
    content: "";
    display: block;
    width: 100%;
    height: 42px;
    background-color: #FFF;
    position: absolute;
    top: -42px; left: 0;
    z-index: 1030;
}
.header .quick-links .secondary ul.level-1 > li {
    position: relative;
}
.header .quick-links .secondary ul.level-1 > li > a {
    display: flex;
    color: rgba(31, 54, 67, .9);
    font-size: 16.5px;
    font-weight: 300;
    line-height: 100%;
    letter-spacing: 0.16px;
    padding: 0 35px;
    margin: 0;
}
.header .quick-links .secondary ul.level-1 > li > a:hover,
.header .quick-links .secondary ul.level-1 > li.current > a {
    color: #53bb48;
    text-decoration: none;
}
.header .quick-links .secondary ul.level-1 > li > a i {
    width: 16px;
    color: #53bb48;
    font-size: 13px;
    text-align: center;
    margin-right: 15px;
    margin-top: auto;
    margin-bottom: auto;
}
.header .quick-links .secondary ul.level-1 > li > a span {
    width: 100%;
    padding: 13px 3px;
    border-bottom: 1px solid #e0eaec;
}
.header .quick-links .secondary ul.level-1 > li:last-of-type > a span {
    border-bottom-width: 0;
}

.header .quick-links {
    display: flex;
    align-items: center;
}
.header.mobile .quick-links {
    width: 105px;
    order: 3;
}
.header .quick-links .tertiary ul {
    display: flex;
    justify-content: flex-end;
    list-style: none;
    padding: 0;
    margin: 0;
}
.header .quick-links .tertiary ul > li {
    margin: 0 6px;
}
.header .quick-links .tertiary ul > li:last-of-type {
    margin-right: 0;
}
.header .quick-links .tertiary ul > li > a {
    display: block;
    text-align: center;
}
.header .quick-links .tertiary ul > li > a:hover {
    text-decoration: none;
}

/* MAIN */

main {
    flex: 1 0 auto;
    padding-top: 50px;
    padding-bottom: 50px;
}

main .content.col-auto {
    flex: 0 0 70%;
    max-width: 70%;
}

main .sidebar.col-auto {
    flex: 0 0 30%;
    max-width: 30%;
}
main .sidebar .box {
    border: 1px solid #d3deeb;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(57, 74, 81, .05);
}
main .sidebar .box {
    margin-top: 80px;
}
main .sidebar .headline ~ .box {
    margin-top: 0;
}
main .sidebar .box img.credit-score,
main .sidebar .box img.sharetec-ad {
    width: 100%;
    max-width: 100%;
    border-radius: 10px;
}

/* HEADLINES */

h2.headline {
    color: var(--primaryTextColor);
    font-size: 32px;
    font-weight: 600;
    line-height: 100%;
    letter-spacing: 0;
    padding: 0 0 45px 35px;
    margin: 0;
}
h2.headline span {
    font-weight: 200;
}
h2.headline i.back {
    position: relative;
    font-family: "Arial";
    font-size: 20px;
    font-style: normal;
    top: -3px;
    padding-right: 10px;
}
h2.headline a:hover {
    text-decoration: none;
}
h2.headline a:hover i {
    color: var(--green);
}

h5 {
    font-size: 18px;
    font-weight: 400;
}

/* TEXT */

.text a {
    color: var(--green);
    text-decoration: underline;
    text-underline-offset: 3px;
}
.text a:hover {
    text-decoration: none;
}

.text > span {
    display: block;
    color: #474a52;
    font-size: 14px;
    font-weight: 400;
    line-height: 100%;
    letter-spacing: 0.14px;
    padding: 0 0 5px 0;
    margin: 0;
}

.text time {
    display: block;
    color: rgba(71, 74, 82, .5);
    font-size: 12px;
    font-style: italic;
    font-weight: 400;
    line-height: 100%;
    letter-spacing: 0.14px;
    padding: 0 0 10px 0;
    margin: 0;
}

.text p, .text ul li, .text ol li {
    color: var(--primaryTextColor);
    font-size: 17px;
    font-weight: 300;
    line-height: 24px;
    letter-spacing: 0.16px;
    padding: 0;
    margin: 0 0 1rem 0;
}
.text p strong {
    font-weight: 700;
}
.text p:last-of-type {
    margin-bottom: 0;
}

.text ul {
    list-style: none;
    padding: 0 0 0 20px;
    margin: 0;
}
.text ul > li {
    position: relative;
    padding: 0 0 0 20px;
    margin: 5px 0 0 0;
}
.text ul > li::before {
    content: "\f054";
    color: var(--green);
    font-family: "Font Awesome 6 Free";
    font-size: 10px;
    font-weight: 700;
    line-height: 100%;
    position: absolute;
    top: 7px; left: 0;
}

.text ol {
    margin-left: 0;
}
.text ol > li {
    padding-left: 7px;
    margin-top: 5px;
}

/* TABLE */

.table-responsive {
    padding: 0 15px;
    background-color: #FFF;
    border: 1px solid #d3deeb;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(57, 74, 81, .05);
}

.table-headline {
    color: var(--primaryTextColor);
    font-size: 20px;
    font-weight: 400;
    line-height: 100%;
    letter-spacing: 0.2px;
    padding: 0 0 15px 35px;
    margin: 0;
}

.table {
    position: relative;
    background-color: #FFF;
}
.table thead th {
    position: relative;
    color: #474a52;
    font-size: 15px;
    font-weight: 400;
    line-height: 100%;
    letter-spacing: 0.14px;
    vertical-align: bottom;
    white-space: nowrap;
    padding: 28px 15px 23px 20px;
    margin: 0;
    background-color: #f4f8f9;
    border: 0;
}
.table thead th:first-child::before,
.table thead th:last-child::before {
    content: "";
    display: block;
    width: 15px;
    height: 100%;
    background-color: #f4f8f9;
    position: absolute;
    top: 0; left: -15px;
}
.table thead th:last-child::before {
    left: initial;
    right: -15px;
}
.table thead th .fa-sort {
    position: relative;
    color: #bed0d4;
    font-size: 10px;
    padding-left: 3px;
    top: -1px;
}
.table thead th.text-upper {
    color: var(--green);
    font-size: 20px;
    font-weight: 500;
}
.table thead th.text-upper span {
    color: var(--primaryTextColor);
    font-weight: 300;
}

.table tbody::before {
    content: "@";
    display: block;
    line-height: 15px;
    text-indent: -99999px;
}
.table.table-hover tbody tr {
    position: relative;
}
.table.table-hover tbody tr:not(.past-due):hover {
    background: rgb(0,169,129);
    background: -moz-linear-gradient(90deg, rgba(0,169,129,1) 0%, rgba(92,202,33,1) 55%, rgba(49,186,72,1) 100%);
    background: -webkit-linear-gradient(90deg, rgba(0,169,129,1) 0%, rgba(92,202,33,1) 55%, rgba(49,186,72,1) 100%);
    background: linear-gradient(90deg, rgba(0,169,129,1) 0%, rgba(92,202,33,1) 55%, rgba(49,186,72,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#00a981",endColorstr="#31ba48",GradientType=1);
    background-attachment: fixed;
    border-radius: 10px;
    cursor: pointer;
}

.table tbody td {
    color: #364c59;
    font-size: 16px;
    font-weight: 300;
    line-height: 100%;
    letter-spacing: 0.6px;
    white-space: nowrap;
    padding: 23px 15px 22px 20px;
    margin: 0;    
    vertical-align: middle;
    border-top: 1px solid #dee7e8;
    z-index: 4;
}
.table tbody tr:first-child td {
    border-top-width: 0;
}
.table tbody td.text-bolder {
    color: #1f3643;
    font-size: 17px;
    font-weight: 400;
}
.table.table-hover tbody tr:not(.past-due):hover td {
    color: #FFF;
    border-top-color: transparent;
}
.table.table-hover tbody tr:hover td:first-child {   
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px;
}
.table.table-hover tbody tr:hover td:last-child {   
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px;
}

.table tbody td i {
    color: var(--green);
    font-size: 15px;
}
.table tbody td i.fa-grey {
    color: #abbdc1;
}
.table.table-hover tbody tr:not(.past-due):hover td i {
    color: #FFF;
}

/* .table tbody tr.past-due {
    position: relative;
    border-radius: 4px;
}
.table tbody tr.past-due:hover {
    background-color: #fdefed;
    cursor: pointer;
}
.table tbody tr.past-due td {
    font-weight: 500;
    padding-top: 30px;
    padding-bottom: 29px;
    border-top: 1px solid #e83519;
    border-bottom: 1px solid #e83519;
}
.table tbody tr.past-due td:first-child {
    padding-left: 65px;
    border-top-left-radius: 10px;
}
.table tbody tr.past-due td:first-child::before {
    content: "\f06a";
    display: flex;
    align-items: center;
    height: 100%;
    color: #FFF;
    font-family: "Font Awesome 6 Free";
    background-color: #e83519;
    border-top-left-radius: 3px;
    border-bottom-left-radius: 3px;
    padding: 0 10px;
    position: absolute;
    top: 0; left: -3px;
}
.table tbody tr.past-due:hover td:first-child {
    color: #e83519;
}
.table tbody tr.past-due td:last-child::before {
    content: "";
    display: block;
    width: 5px;
    height: calc(100% - 1px);
    padding: 0;
    background-color: #fff;
    border-right: 1px solid #e83519;
    border-top-right-radius: 3px;
    border-bottom-right-radius: 3px;
    padding: 0;
    position: absolute;
    top: 1px;
    right: -3px;
}
.table tbody tr.past-due:hover td:last-child::before {
    background-color: #fdefed;
}
.table tbody tr.past-due td.text-bolder {
    font-weight: 600;
}
.table tbody tr.past-due:hover td i {
    color: #e83519;
} */

.table tbody tr.past-due {
    position: relative;
    border-radius: 6px;
}
.table tbody tr.past-due:hover {
    background-color: #fdefed;
    cursor: pointer;
}
.table tbody tr.past-due + tr td {
    border-top-color: transparent;
}
.table tbody tr.past-due td {
    font-weight: 500;
    padding-top: 30px;
    padding-bottom: 29px;
}
.table tbody tr.past-due td:first-child {
    padding-left: 65px;
    border-top-left-radius: 10px;
}
.table tbody tr.past-due td:first-child::before {
    content: "\f06a";
    display: flex;
    align-items: center;
    height: calc(100% + 1px);
    color: #FFF;
    font-family: "Font Awesome 6 Free";
    background-color: #e83519;
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px;
    padding: 0 10px;
    position: absolute;
    top: -1px; left: 0;
}
.table tbody tr.past-due td:last-child::after {
    content: "";
    width: calc(100% - 20px);
    height: calc(100% + 1px);
    border: 1px solid red;
    border-left-width: 0;
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px;
    padding: 0;
    position: absolute;
    top: -1px;
    right: 0;
}
.table tbody tr.past-due:hover td {
    border-color: transparent;
}
.table tbody tr.past-due td.text-bolder {
    font-weight: 600;
}
.table tbody tr.past-due:hover td i {
    color: #e83519;
}

.table tbody td span.date {
    position: relative;
    color: #e83519;
    font-size: 11px;
    font-weight: 300;
    line-height: 100%;
    letter-spacing: 0.33px;
    text-transform: uppercase;
    padding: 6px 15px 5px 15px;
    margin: 0 0 0 16px;
    border: 1px solid #e83519;
    border-radius: 4px;
    top: -2px;
}
.table tbody td span.date b {
    color: #010000;
}

.table tbody td span.extra {
    display: inline-block;
    color: rgb(54, 76, 89, .75);
    font-size: 13px;
    font-weight: 300;
    line-height: 100%;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    padding: 6px 0 0 0;
    margin: 0;
}
.table tbody td span.extra b {
    color: rgb(54, 76, 89, .85);
    font-weight: 400;
}

.table tbody td span.t-incoming,
.table tbody td span.t-outgoing {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 28px;
    height: 28px;
    font-size: 12px;
    font-weight: 700;
    border-radius: 50%;
}
.table tbody td span.t-incoming {
    background-color: rgba(94, 197, 0, .18);
}
.table tbody td span.t-incoming i {
    color: var(--green);
    transform: rotate(225deg);
}
.table tbody td span.t-outgoing {
    background-color: rgba(0, 143, 210, .18);
}
.table tbody td span.t-outgoing i {
    color: #008fd2; 
    transform: rotate(45deg);
}

.table-smaller tbody td {
    padding-top: 18px;
    padding-bottom: 17px;
}
.table-smaller tbody td:first-child {
    padding-left: 0;
}
.table-smaller tbody td:last-child {
    padding-right: 0;
}

.load-more p {
    color: var(--primaryTextColor);
    font-size: 15px;
    font-weight: 300;
    font-style: italic;
    line-height: 100%;
    letter-spacing: 0.6px;
    padding: 35px 0 0 0;
    margin: 0;
}

/* FILTERS */

.table-filters.with-bg {
    background-color: #FFF;
    border: 1px solid #d3deeb;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(57, 74, 81, .03);
}
.table-filters .content {
    padding: 40px 35px;
}

.filter p {
    color: #64747d;
    font-size: 12px;
    font-weight: 400;
    line-height: 100%;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    padding: 0 0 6px 0;
    margin: 0;
}
.filter p::after {
    content: "\f107";
    color: #2a404d;
    font-family: "Font Awesome 6 Free";
    font-size: 10px;
    font-weight: 700;
    padding-left: 6px;
}
.download {
    padding-right: 35px;
}
.download span,
.download button,
.filter span {
    display: inline-block;
    color: #1f3643;
    font-size: 13px;
    font-weight: 400;
    line-height: 100%;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    padding: 10px 20px;
    margin: 0;
    background-color: #FFF;
    border: 1px solid #dbe3e4;
    border-radius: 4px;
}
.download span {
    color: #7a909d;
    margin-right: 5px;
    white-space: nowrap;
}
.download span i,
.download button i {
    position: relative;
    top: -1px;
    color: #4a606d;
    font-size: 10px;
    font-weight: 700;
    padding-left: 5px;
    transition: all .3s;
}
.download button {
    color: #7a909d;
    background-color: #f4f8f9;
    border-color: #d3deeb;
    cursor: pointer;
    outline: none;
    transition: all .3s;
}
.download button:hover {
    background-color: rgba(211, 222, 235, .7);
}

.search input {
    display: inline-block;
    width: 290px;
    height: 62px;
    color: #2a404d;
    font-size: 17px;
    font-weight: 300;
    line-height: 100%;
    letter-spacing: 0.6px;
    padding: 0 0 0 25px;
    margin: 0;
    background-color: #FFF;
    border: 1px solid #dbe3e4;
    border-right-width: 0;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    outline: none;
}
.search button {
    display: inline-block;
    width: auto !important;
    height: 62px;
    color: #2a404d;
    font-size: 16px;
    font-weight: 700;
    padding: 0 20px;
    background-color: #FFF;
    border: 1px solid #dbe3e4;
    border-left-width: 0;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}

/* ACCOUNT DETAILS */

.account-info {
    position: relative;
    padding: 40px 35px;
    background-color: #FFF;
    border: 1px solid #d3deeb;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(57, 74, 81, .05);
}
.account-info::before {
    content: "";
    display: block;
    width: 45%;
    height: 70px;
    background-color: #f4f8f9;
    border-top-left-radius: 10px;
    border-bottom-right-radius: 30px;
    position: absolute;
    top: 0; left: 0;
}
.account-info > * {
    position: relative;
    z-index: 4;
}

.account-info .value:not(:last-of-type) {
    padding-right: 150px;
}
.account-info .value h3 {
    color: #64747d;
    font-size: 18px;
    font-weight: 400;
    line-height: 100%;
    letter-spacing: 0.09px;
    padding: 0 0 32px 0;
    margin: 0;
}
.account-info .value p {
    color: var(--green);
    font-size: 30px;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: -0.6px;
    padding: 0;
    margin: 0;
}

/* TRANSFERS */

.transfer-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 35px;
    border-bottom: 1px solid #cad6d7;
}
.transfer-tabs .tab {
    position: relative;
    color: #5c7381;
    font-size: 19px;
    font-weight: 300;
    line-height: 100%;
    letter-spacing: 0.08px;
    padding: 22px 0;
    margin: 0 20px;
}
.transfer-tabs .tab.active {
    color: var(--primaryTextColor);
    font-weight: 600;
}
.transfer-tabs .tab.active:hover {
    text-decoration: none;
}
.transfer-tabs .tab.active::before {
    content: "";
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--green);
    position: absolute;
    bottom: -3px; left: 0;
}
.transfer-tabs .tab.active::after {
    content: "";
    width: 0px;
    height: 0px;
    margin: 0 auto;
    border-style: solid;
    border-width: 5px 5px 0 5px;
    border-color: var(--green) transparent transparent transparent;
    transform: rotate(0deg);
    position: absolute;
    bottom: -8px; left: 0; right: 0;
}

.transfer-box {
    background-color: #FFF;
    border: 1px solid #d3deeb;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(57, 74, 81, .05);
}

.transfer-box .form-headline h3 {
    color: var(--green);
    font-size: 20px;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: -0.1px;
    padding: 30px 35px;
    margin: 0;
    background-color: #f4f8f9;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.transfer-box .form-fields {
    padding: 80px 130px 30px 130px;
}
.transfer-box .form-fields .form-group.custom-checkbox .custom-control-label {
    font-size: 16px;
}
.transfer-box .form-fields .form-group.custom-checkbox .custom-control-label::before {
    width: 18px;
    height: 18px;
}
.transfer-box .form-fields .form-group.custom-checkbox .custom-control-label::after {
    top: 4px;
    left: -27px;
}

.transfer-box .additional-info {
    padding: 20px 22px 0 22px;
}
.transfer-box .additional-info p {
    color: var(--primaryTextColor);
    font-size: 15px;
    font-weight: 400;
    line-height: 100%;
    letter-spacing: 0.15px;
    padding: 0 0 8px 0;
    margin: 0;
}
.transfer-box .additional-info p:last-of-type {
    padding-bottom: 0;
}
.transfer-box .additional-info p span {
    display: inline-block;
    width: 75px;
    font-weight: 300;
}

.transfer-box .form-buttons {
    display: flex;
    justify-content: center;
    column-gap: 10px;
    padding: 30px 0;
    background-color: #f6f9fa;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

/* STOP PAYMENTS */

.stop-payments .text,
.link-external-accounts .text {
    position: relative;
    margin-left: 35px;
    padding-top: 35px;
    border-top: 1px solid #dee7e8;
}

/* DOCUMENTS */

.documents .table-filters select {
    width: 260px;
}
.documents .transfer-box .form-fields,
.profile .transfer-box .form-fields {
    padding-top: 50px;
}

/* TWO COLORS BOX */

.box-2c {
    background-color: #FFF;
    border: 1px solid #d3deeb;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(57, 74, 81, .03);
}

.box-2c .text {
    padding: 40px 35px;
}
.box-2c .text .form-group.custom-checkbox .custom-control-label {
    font-size: 17px;
    font-weight: 400;
}

.box-2c .buttons {
    column-gap: 10px;
    padding: 30px 35px;
    background-color: #f4f8f9;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

/* PROFILE */

.profile-menu {
    background-color: #FFF;
    border: 1px solid #d3deeb;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(57, 74, 81, .03);
}
.profile-menu > h4 {
    color: var(--green);
    font-size: 20px;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: -0.1px;
    padding: 30px 35px;
    margin: 0;
    background-color: #f4f8f9;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.profile-menu ul {
    list-style: none;
    padding: 20px;
    margin: 0;
}
.profile-menu ul li {
    position: relative;
}
.profile-menu ul li::before {
    content: "\f061";
    color: var(--green);
    font-family: "Font Awesome 6 Free";
    font-size: 10px;
    font-weight: 700;
    position: absolute;
    top: 16px; right: 20px;
}
.profile-menu ul li.current::before {
    color: #FFF;
}
.profile-menu ul li:not(:last-of-type)::after {
    content: "";
    display: block;
    width: calc(100% - 30px);
    height: 1px;
    margin: 0 auto;
    background-color: #dee7e8;
    position: absolute;
    left: 0; right: 0;
    bottom: 0;
}
.profile-menu ul li.current::after {
    background-color: transparent;
}
.profile-menu ul li a {
    display: block;
    color: #64747d;
    font-size: 17px;
    font-weight: 400;
    line-height: 100%;
    letter-spacing: 0.32px;
    padding: 20px 15px;
    margin: 0;
}
.profile-menu ul li.current a:hover {
    text-decoration: none;
}
.profile-menu ul li:not(.current) a:hover {
    color: var(--green);
}
.profile-menu ul li.current a {
    color: #FFF;
    background: rgb(0,169,129);
    background: -moz-linear-gradient(90deg, rgba(0,169,129,1) 0%, rgba(92,202,33,1) 55%, rgba(49,186,72,1) 100%);
    background: -webkit-linear-gradient(90deg, rgba(0,169,129,1) 0%, rgba(92,202,33,1) 55%, rgba(49,186,72,1) 100%);
    background: linear-gradient(90deg, rgba(0,169,129,1) 0%, rgba(92,202,33,1) 55%, rgba(49,186,72,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#00a981",endColorstr="#31ba48",GradientType=1);
    border-radius: 6px;
}

.profile #change-account-order .form-fields {
    padding-left: 40px;
}
.profile #change-account-order .form-fields form p {
    color: var(--primaryTextColor);
    font-size: 14px;
    font-weight: 300;
    line-height: 100%;
    letter-spacing: 0.56px;
    text-transform: uppercase;
    padding: 0 0 5px 0;
    margin: 0 0 35px 0;
    border-bottom: 1px solid #d6dee0;
}
.profile #change-account-order .form-fields form p:not(:first-of-type) {
    padding-top: 40px;
}
.profile #change-account-order .form-fields i {
    color: #455e6c;
    font-size: 15px;
    cursor: pointer;
}

/* HELP */

.help .text p {
    font-size: 19px;
    line-height: 30px;
}
.help .text p b {
    font-weight: 400;
}
.help .text button {
    width: 370px;
    margin-top: 20px;
}
.help .text a.phone {
    font-size: 33px;
    font-weight: 600;
    letter-spacing: -0.66px;
    text-decoration: none;
}
.help .text a.phone:hover {
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 5px;
}

/* HELLO BAR */

.mobile-app {
    height: 40px;
    text-align: center;
    background: rgb(0,169,129);
    background: -moz-linear-gradient(90deg, rgba(0,169,129,1) 0%, rgba(92,202,33,1) 55%, rgba(49,186,72,1) 100%);
    background: -webkit-linear-gradient(90deg, rgba(0,169,129,1) 0%, rgba(92,202,33,1) 55%, rgba(49,186,72,1) 100%);
    background: linear-gradient(90deg, rgba(0,169,129,1) 0%, rgba(92,202,33,1) 55%, rgba(49,186,72,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#00a981",endColorstr="#31ba48",GradientType=1);
}
.mobile-app p {
    color: #FFF;
    font-size: 12px;
    font-weight: 300;
    line-height: 14px;
    letter-spacing: 0.12px;
    padding: 0 50px;
    margin: 0;
}
.mobile-app p a {
    text-decoration: underline;
    text-decoration-color: rgba(255, 255, 255, .7);
    text-underline-offset: 2px;
}
.mobile-app p a:hover {
    text-decoration: none;
}

/* NATIV CREDIT SCORE */

main .sidebar .box ~ .credit-score-box {
    margin-top: 20px;
}

.credit-score-box {
    position: relative;
}
.credit-score-box .content {
    position: relative;
    padding: 40px;
    background-color: #FFF;
    border: 1px solid #d3deeb;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(57, 74, 81, .05);
    overflow: hidden;
}
.credit-score-box .content::before {
    content: "";
    display: block;
    width: 170px;
    height: 97px;
    background-image: url('../img/icons/icon-credit-score.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    bottom: -10px; right: -15px;
}
.credit-score-box .content .value {
    position: relative;
    color: #00aa56;
    font-size: 60px;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: -1.2px;
    padding: 12px 25px 11px 0;
    margin: 0 30px 0 0;
    border-right: 1px solid #e2eaec;
    z-index: 4;
}
.credit-score-box .content .title {
    position: relative;
    color: #2a404d;
    font-size: 27px;
    font-weight: 600;
    line-height: 100%;
    letter-spacing: -0.27px;
    padding: 0;
    margin: 0;
    z-index: 4;
}
.credit-score-box .content .date {
    position: relative;
    color: #64747d;
    font-size: 17px;
    font-weight: 400;
    line-height: 100%;
    letter-spacing: 0.08px;
    padding: 3px 0 0 0;
    margin: 0;
    z-index: 4;
}
.credit-score-box .content .label {
    color: #FFF;
    font-size: 16px;
    font-weight: 600;
    line-height: 100%;
    letter-spacing: 0.16px;
    padding: 9px 30px 7px 30px;
    margin: 0;
    background-color: #00aa56;
    border-bottom-left-radius: 9px;
    position: absolute;
    top: 0; right: 0;
    z-index: 1;
}