/**
* Rule to set correct calc values;
* Even if this can be written in a simplified formulae and without use of calc.
* we aim to describe the expanded calc to expose params
*
* **notice this can be simplified at "sass compile time" with a mixin
* to flatten calc value to a number.
*
* calc( (originalValuePx / viewportwidthPx) * 100vw);
*
* Scale the following value: font size value of 21px in a viewport of 360px
* font-size: calc((21/360)*100vw);
*
*/
/**
* Rule to set correct calc values;
* Even if this can be written in a simplified formulae and without use of calc.
* we aim to describe the expanded calc to expose params
*
* **notice this can be simplified at "sass compile time" with a mixin
* to flatten calc value to a number.
*
* calc( (originalValuePx / viewportwidthPx) * 100vw);
*
* Scale the following value: font size value of 21px in a viewport of 360px
* font-size: calc((21/360)*100vw);
*
*/
/**
 * WebKit font-smoothing
 * ------------------------------------------------
 *
 * References:
 *
 * 1. http://maxvoltar.com/sandbox/fontsmoothing/
 * 2. http://maxvoltar.com/archive/-webkit-font-smoothing
 * 3. https://gist.github.com/adamstac/5048881
 *
 * Values: none, antialiased (default), subpixel-antialiased
 */
/**
 *  Background images with retina support
 */
/**
 * Animates properties for sticky nav elements when page is scrolled
 * @param: $property . The property that should be animated
 *
 */
/**
 * Creates a text filled by gradient between two colors
 *
 * TODO: Find a crossbrowser solution, this doesn't works on Firefox
 *
 * @param  {[type]} $from-color: #6cc9fe       [description]
 * @param  {[type]} $to-color:   #38d54a       [description]
 * @param  {[type]} $direction:  120deg        [description]
 *
 * @return {[type]}              [description]
 */
/**
 * Triangle decorator
 */
/**
* Rule to set correct calc values;
* Even if this can be written in a simplified formulae and without use of calc.
* we aim to describe the expanded calc to expose params
*
* **notice this can be simplified at "sass compile time" with a mixin
* to flatten calc value to a number.
*
* calc( (originalValuePx / viewportwidthPx) * 100vw);
*
* Scale the following value: font size value of 21px in a viewport of 360px
* font-size: calc((21/360)*100vw);
*
*/
/**
 * Sets height ratio for standard SC Component.
 *
 * @params
 * $avoid-small-resolutions: Avoids the mixin behaviour for resolutions smaller than medium.
 *                           It's used in components such as the footer which doesn't have a height
 *                           behaviour on small resolutions, instead it depends on it's own content's height.
 *
 */
/**
 *  Hides for all states, assign to the breakpoints passed as first param,
 *  the display type passed as the second param.
 *  @param $breakpoint-to-show the breakpoints you want to show
 *  @param $display the display type to be assigned to breakpoints,defaults to
 *  (display:block)
 */
/**
 * Sets font-size and font-weight.
 *
 * Font-weights smaller than 300 are only allowed when font-size
 * is higher than 36px.
 *
 * Font-sizes bigger than 20px should activate aliased smoothing,
 * then increase font-weight to 300
 *
 * If we're on IE, and font-size
 * is less or equal than 17px and font-weight is less than 400,
 * then font-weight is increased to improve readibility.
 *
 * @params
 * $font-size: font size
 * $font-weight: font weight
 * $antialiased: boolean to active aliased smoothing
 * $supers: collection of parent classes to apply the mixin, they have to be separated by comas
 *
 *
 * Example 1:
 *
 *.component---header---title {
 *   @include safe-font-size(15px, 300, false, '.is-upload-step', '.bp-small', '.bp-medium');
 * }
 *
 * The $supers refers to the parent classes, so in this case, the mixin apply when the parent class is .is-upload-step,
 * bp-small or bp-medium
 *
 *
 * Example 2:
 *
 * .component---info.type---header {
 *    .component---info---title {
 *      @include safe-font-size(52px, 300, false, '.layout-2cols');
 *    }
 * }
 *
 * The font size here is 52px, bigger than 20px, so the aliased smoothing should activate.
 * The $supers is only one, so the mixin only apply to the '.layout-2cols .component---info.type---header .component---info---title'
 *
 */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
  font-weight: inherit;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  font-weight: 300;
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before, blockquote:after {
  content: "";
  content: none;
}

q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

a {
  text-decoration: none;
  cursor: pointer;
}

input,
textarea,
select {
  margin: 0;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
}

textarea {
  overflow: auto;
}

button::-moz-focus-inner,
input[type=button]::-moz-focus-inner,
input[type=submit]::-moz-focus-inner,
input[type=reset]::-moz-focus-inner {
  padding: 0 !important;
  border: 0 none !important;
}

mark {
  background: none;
  color: inherit;
}

strong {
  font-weight: bold;
}

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* common css file where we define the font and some base css */
@font-face {
  font-family: "SC Prosper Sans";
  src: url("https://av.sc.com/sg/YEC21/SCProsperSans-Bold.woff2") format("woff2");
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: "SC Prosper Sans";
  src: url("https://av.sc.com/sg/YEC21/SCProsperSans-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "SC Prosper Sans";
  src: url("https://av.sc.com/sg/YEC21/SCProsperSans-Regular.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "SC Prosper Sans";
  src: url("https://av.sc.com/sg/YEC21/SCProsperSans-Light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
}
body {
  margin: 0;
  font-family: "SC Prosper Sans";
  line-height: normal;
  font-size: 16px;
  background-color: #f2f2f2;
  font-weight: 400;
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
p {
  margin: 0;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
          appearance: none;
  margin: 0;
}

.modal-open {
  height: 100vh;
  overflow: hidden;
}

/* Hiding class, making content visible only to screen readers but not visually */
/* "sr" meaning "screen-reader" */
.sr-only:not(:focus):not(:active) {
  clip: rect(0 0 0 0);
  -webkit-clip-path: inset(50%);
          clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.hidden {
  display: none;
}
.hidden.only-prelogin {
  display: none;
}

.visible {
  display: block;
}

.only-desktop {
  display: none;
}

.only-mobile {
  display: block;
}

/* Apply touch-action only on mobile devices */
.sc-appl-jrny-question-icon {
  line-height: 1;
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: "SC Prosper Sans";
}
.sc-appl-jrny-question-icon svg,
.sc-appl-jrny-question-icon img {
  width: 16px;
  height: 16px;
  margin-left: 0;
  position: relative;
}
.sc-appl-jrny-question-icon-right {
  position: absolute;
  right: 0;
  color: #2772c7;
}
.sc-appl-jrny-question-icon-plus {
  padding-right: 15px;
  top: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.sc-appl-jrny-question-icon-plus::after {
  content: "+";
  font-size: 20px;
  position: absolute;
  right: 0;
}

.sc-loading-gif {
  position: fixed;
  /* Position the loading element relative to the viewport */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 9999;
}
.sc-loading-gif lottie-player {
  width: 100px;
}

.sc-stikethrough-text {
  text-decoration: line-through;
}

/**********Common Styles **********/
.sc-appl-jrny__close-btn {
  background: transparent;
  border: 0;
  cursor: pointer;
}
.sc-appl-jrny__close-btn svg {
  width: 20px;
  height: 20px;
}
.sc-appl-jrny__coupon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.sc-appl-jrny__coupon-btn {
  font-family: "SC Prosper Sans";
  background-color: #efefef;
  border-radius: 27px;
  max-width: 150px;
  padding: 0 16px;
  height: 30px;
  font-weight: 500;
  font-size: 12px;
  color: #2772c7;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: 0;
  cursor: pointer;
  -webkit-transition: background 200ms;
  transition: background 200ms;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  white-space: nowrap;
  margin-left: 16px;
}
.sc-appl-jrny__coupon-btn.hidden {
  display: none;
}
.sc-appl-jrny__coupon-btn--loader {
  width: 20px;
  height: 20px;
  margin: 0;
  background: transparent;
  border-radius: 50%;
  -webkit-animation: 1s spin linear infinite;
  animation: 1s spin linear infinite;
  border: solid 4px transparent;
  border-top-color: rgba(221, 221, 221, 0.8666666667);
  border-left-color: #ddd;
}
@-webkit-keyframes spin {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes spin {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.sc-appl-jrny__coupon-close {
  border: none;
  background: transparent;
  margin-left: 16px;
}
.sc-appl-jrny__coupon-message {
  margin: 4px 0;
  font-size: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.sc-appl-jrny__coupon-message svg,
.sc-appl-jrny__coupon-message img {
  width: 18px;
  height: 18px;
  margin-right: 4px;
}
.sc-appl-jrny__coupon-message--success {
  color: #1f8845;
}
.sc-appl-jrny__coupon-message.hidden {
  display: none;
}

.hidden {
  display: none;
}

.sc-appl-jrny-main {
  max-width: 1200px;
  margin: 0 auto;
}
.sc-appl-jrny-main__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}
.sc-appl-jrny-main__content {
  width: 100%;
}
.sc-appl-jrny-main__logo {
  display: none;
}

.sc-appl-jrny-link {
  color: #2772c7;
  font-size: 14px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: "SC Prosper Sans";
  text-decoration: none;
}

.sc-appl-jrny-head {
  background: #2772c7;
  position: relative;
  left: 0;
  z-index: 1;
}
.sc-appl-jrny-head__banner {
  position: relative;
  overflow: hidden;
  min-height: 120px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.sc-appl-jrny-head__banner-img {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.sc-appl-jrny-head__title {
  padding: 16px;
  position: relative;
}
.sc-appl-jrny-head__title span {
  color: #08d656;
  font-size: 12px;
  font-weight: 400;
}
.sc-appl-jrny-head__timer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 8px;
  position: relative;
}
.sc-appl-jrny-head__timer svg {
  width: 22px;
  height: 22px;
}
.sc-appl-jrny-head__img {
  position: absolute;
  z-index: 0;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-position: 35% 50%;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: scroll;
  -webkit-transition: background-position 0.3s ease-in-out;
  transition: background-position 0.3s ease-in-out;
}
.sc-appl-jrny-head__title-content {
  font-weight: 400;
  font-size: 24px;
  line-height: 1.3;
  max-width: 500px;
  position: relative;
  color: #fff;
}
.sc-appl-jrny-head__desc {
  color: #fff;
  font-size: 12px;
}
.sc-appl-jrny-head__btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.sc-appl-jrny-head__btn {
  border-radius: 20px;
  border: 1px solid #d4d4d4;
  background: #ebf2f7;
  padding: 8px 16px;
  font-size: 14px;
  text-decoration: none;
  color: #2772c7;
  font-weight: 500;
  font-family: "SC Prosper Sans";
  display: none;
}

.sc-appl-jrny-card {
  background: #fff;
  border-radius: 6px;
  padding: 16px;
  margin-bottom: 24px;
  position: relative;
  width: 100%;
  border: 1px solid #ccc;
}
.sc-appl-jrny-card__cc-img {
  max-height: 40px;
  max-width: 100px;
}
.sc-appl-jrny-card__details {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 1px solid #ccc;
}
.sc-appl-jrny-card__inner--full-border {
  margin: 16px -16px 0;
  padding: 16px 16px 0;
  border-top: 1px solid #ccc;
}
.sc-appl-jrny-card__details {
  padding-left: 8px;
}
.sc-appl-jrny-card__title {
  color: #6b6e73;
  font-size: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.sc-appl-jrny-card__values {
  font-size: 20px;
  font-weight: 500;
}
.sc-appl-jrny-card__value {
  font-size: 12px;
}
.sc-appl-jrny-card__value span {
  font-size: 16px;
  font-weight: 500;
}
.sc-appl-jrny-card__detail {
  margin: 16px 0;
}
.sc-appl-jrny-card__detail--row {
  margin: 8px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.sc-appl-jrny-card__detail--row .sc-appl-jrny-card__title {
  color: #000;
}
.sc-appl-jrny-card--col-two {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.sc-appl-jrny-card__desc span {
  display: block;
  line-height: 1.2;
}
.sc-appl-jrny-card__desc p {
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5;
  color: #6b6e73;
}
.sc-appl-jrny-card__desc strong {
  font-size: 13px;
  font-weight: 500;
  line-height: 1.4;
}
.sc-appl-jrny-card__img {
  width: 20px;
  height: 20px;
  padding-right: 16px;
}
.sc-appl-jrny-card__list {
  color: #6b6e73;
  font-size: 14px;
  padding-left: 16px;
  margin: 0;
}
.sc-appl-jrny-card__list li {
  list-style: decimal;
}
.sc-appl-jrny-card__view-more {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: none;
  background-color: transparent;
  margin: 16px auto 0 auto;
  color: #2772c7;
  position: relative;
  font-family: "SC Prosper Sans";
  cursor: pointer;
}
.sc-appl-jrny-card__view-more::after {
  content: "";
  border: solid #2772c7;
  border-width: 0 2px 2px 0;
  display: inline-block;
  width: 2px;
  height: 2px;
  padding: 2px;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
  margin-left: auto;
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  right: -9px;
  top: -1px;
  position: relative;
}
.sc-appl-jrny-card__view-more.open::after {
  -webkit-transform: rotate(225deg);
      -ms-transform: rotate(225deg);
          transform: rotate(225deg);
  top: 2px;
}
.sc-appl-jrny-card__view-more svg {
  width: 16px;
  -webkit-transform: rotate(270deg);
      -ms-transform: rotate(270deg);
          transform: rotate(270deg);
  margin-left: 4px;
}

.sc-appl-jrny-progress {
  padding: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background: #fff;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.sc-appl-jrny-progress .currentState {
  display: block;
  height: inherit;
  border-radius: inherit;
  background: linear-gradient(140.79deg, #2772c7 -32.2%, #29a048 100.05%);
  -webkit-transition: width 200ms;
  transition: width 200ms;
}

.sc-appl-jrny-title {
  color: #6b6e73;
  font-size: 14px;
  margin-bottom: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  padding-left: 12px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.sc-appl-jrny-title::before {
  content: "";
  background: -webkit-gradient(linear, left top, left bottom, from(#38d200), to(rgba(56, 210, 0, 0)));
  background: linear-gradient(180deg, #38d200 0%, rgba(56, 210, 0, 0) 100%);
  width: 3px;
  height: 24px;
  position: absolute;
  top: 3px;
  left: 0;
}

.sc-appl-jrny-page {
  margin: 24px 16px;
  display: none;
}
.sc-appl-jrny-page:not(.sc-appl-jrny-submission) {
  padding-bottom: 40px;
}
.sc-appl-jrny-page.active {
  display: block;
}

.sc-appl-tenor {
  padding: 20px 0;
  position: relative;
}
.sc-appl-tenor-selector {
  position: relative;
  list-style: inside;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  top: 16px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.sc-appl-tenor-selector::after {
  content: "";
  display: block;
  position: absolute;
  top: -16px;
  width: 100%;
  height: 4px;
  background: #ebf2f7;
}
.sc-appl-tenor-selector__month {
  position: relative;
  display: block;
  z-index: 2;
  text-align: center;
  color: #000;
  line-height: 22px;
  font-size: 12px;
}
.sc-appl-tenor-selector__step {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  width: 30px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.sc-appl-tenor-selector__step::after {
  content: "";
  display: block;
  position: absolute;
  top: -16px;
  width: 4px;
  height: 4px;
  background-color: #ccc;
  z-index: 1;
  border-radius: 50%;
  cursor: pointer;
}

.sc-appl-jrny-transaction {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  padding: 8px 0;
  border-bottom: 1px solid #dedede;
}
.sc-appl-jrny-transaction:last-child {
  border: none;
}
.sc-appl-jrny-transaction__details {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 16px;
}
.sc-appl-jrny-transaction__title {
  font-size: 14px;
  display: block;
}
.sc-appl-jrny-transaction__date {
  font-size: 12px;
  display: block;
  color: #6b6e73;
}
.sc-appl-jrny-transaction__icon {
  padding: 4px;
  border: 1px solid #eee;
  margin-right: 8px;
  border-radius: 6px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.sc-appl-jrny-transaction__icon img {
  width: 20px;
}
.sc-appl-jrny-transaction__currency {
  font-size: 11px;
}
.sc-appl-jrny-transaction__amount {
  font-size: 16px;
  font-weight: 500;
}
.sc-appl-jrny-transaction .sc-appl-jrny-check__input:checked ~ .sc-appl-jrny-check__check::after {
  top: 22px;
  left: -1px;
}
.sc-appl-jrny-transaction__subtitle {
  color: #6b6e73;
  font-size: 14px;
  font-weight: 500;
}
.sc-appl-jrny-transaction__total {
  font-size: 20px;
}
.sc-appl-jrny-transaction__total-amt {
  font-weight: 500;
}
.sc-appl-jrny-transaction .sc-appl-jrny-check {
  position: absolute;
}

.sc-appl-jrny-checkbox__input {
  position: absolute;
  opacity: 0;
  height: 0;
  width: 0;
}
.sc-appl-jrny-checkbox input:checked ~ .sc-appl-jrny-checkbox__check::before {
  border-color: #2772c7;
  background: #2772c7;
}
.sc-appl-jrny-checkbox input:checked ~ .sc-appl-jrny-checkbox__check::after {
  content: "";
  position: absolute;
  top: 10px;
  left: 9px;
  width: 6px;
  height: 12px;
  border: solid #fff;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}
.sc-appl-jrny-checkbox__inner {
  padding-left: 32px;
  margin-bottom: 1.5em;
  position: relative;
}
.sc-appl-jrny-checkbox__inner--radio {
  margin-bottom: 0;
}
.sc-appl-jrny-checkbox__inner--radio label:before {
  content: "";
  border-radius: 50%;
}
.sc-appl-jrny-checkbox__inner--radio input:checked ~ .sc-appl-jrny-checkbox__check:before {
  background-color: #fff;
  border-color: #2772c7;
}
.sc-appl-jrny-checkbox__inner--radio input:checked ~ .sc-appl-jrny-checkbox__check::after {
  content: "";
  background-color: #2772c7;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  top: 12px;
  left: 12px;
  border-width: 0;
  position: absolute;
}
.sc-appl-jrny-checkbox__inner--radio input:checked ~ .sc-appl-jrny-checkbox__check--center::before {
  top: 50%;
  -webkit-transform: translate(0%, -50%);
      -ms-transform: translate(0%, -50%);
          transform: translate(0%, -50%);
}
.sc-appl-jrny-checkbox__inner--radio input:checked ~ .sc-appl-jrny-checkbox__check--center:after {
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  top: 50%;
}
.sc-appl-jrny-checkbox__check {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #191919;
  font-weight: 500;
  cursor: pointer;
}
.sc-appl-jrny-checkbox__check--center::before {
  top: 50%;
  -webkit-transform: translate(0%, -50%);
      -ms-transform: translate(0%, -50%);
          transform: translate(0%, -50%);
}

.sc-appl-jrny-badge {
  background: #ecfdf8;
  border-radius: 0px 0px 10px 10px;
  font-weight: 400;
  font-size: 10px;
  padding: 0px 10px;
  position: absolute;
  top: 0;
  right: 12px;
}
.sc-appl-jrny-badge--yellow {
  background: #fffddb;
}

.sc-appl-jrny-offer-badge {
  background: transparent;
  border-radius: 4px;
  font-weight: 400;
  font-size: 10px;
  padding: 0px 4px;
  position: relative;
  margin: 0 0 8px 4px;
  border: 1px solid #000;
  color: #000;
}
.sc-appl-jrny-offer-badge--with-image {
  position: relative;
  min-height: 50px;
  padding: 0 16px 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 12px;
  border: 1px solid #ccc;
  margin: 0 0 16px 0;
  background-color: #eee;
  background-size: contain;
  background-repeat: no-repeat;
}
.sc-appl-jrny-offer-badge--with-image .sc-appl-jrny-offer-badge__img {
  position: relative;
  width: 120px;
  margin-right: 8px;
}
.sc-appl-jrny-offer-badge--with-image .sc-appl-jrny-offer-badge__img img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  -o-object-position: right;
     object-position: right;
}
.sc-appl-jrny-offer-badge--with-image .sc-appl-jrny-offer-badge__desc {
  padding: 8px 0;
  width: calc(100% - 120px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.sc-appl-jrny-offer-badge--with-image .sc-appl-jrny-offer-badge__desc span {
  color: #2772c7;
}
.sc-appl-jrny-offer-badge-bottom-arrow {
  margin: 0px 0 16px;
}
.sc-appl-jrny-offer-badge-bottom-arrow::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  background-color: #eee;
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  bottom: -6px;
  left: 0;
  right: 10px;
  margin-left: auto;
}
.sc-appl-jrny-offer-badge-top-arrow {
  margin: 16px 0 0;
}
.sc-appl-jrny-offer-badge-top-arrow::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  background-color: #eee;
  border-left: 1px solid #ccc;
  border-top: 1px solid #ccc;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  top: -6px;
  left: 0;
  right: 10px;
  margin-left: auto;
}
.sc-appl-jrny-offer-badge.hidden {
  display: none;
}
.sc-appl-jrny-offer-badge--with-image-bg {
  position: relative;
  min-height: 50px;
  padding: 4px 16px 4px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 14px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 1px solid #ddd;
  margin: 0 0 16px 0;
  background-size: contain;
  padding-left: 110px;
  background-repeat: no-repeat;
}
.sc-appl-jrny-offer-badge--with-image-bg .sc-appl-jrny-badge__image {
  position: relative;
  max-width: 100px;
}
.sc-appl-jrny-offer-badge--with-image-bg .sc-appl-jrny-badge__image img {
  height: 50px;
}

.sc-appl-jrny-offer-size-nudge {
  background: transparent;
  font-weight: 400;
  font-size: 10px;
  padding: 0px 4px;
  position: relative;
  margin: 0 0 8px 4px;
  color: #000;
  border: 1px solid #a9c7e9;
  border-radius: 6px;
}
.sc-appl-jrny-offer-size-nudge--with-image {
  position: relative;
  min-height: 50px;
  padding: 0 16px 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 11px;
  border: 1px solid #a9c7e9;
  margin: 0 0 16px 0;
  background-color: #fafafa;
  background-size: contain;
  background-repeat: no-repeat;
}
.sc-appl-jrny-offer-size-nudge--with-image .sc-appl-jrny-offer-size-nudge__img {
  position: relative;
  min-height: 72px;
  width: 120px;
  margin-right: 8px;
}
.sc-appl-jrny-offer-size-nudge--with-image .sc-appl-jrny-offer-size-nudge__img img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  -o-object-position: left;
     object-position: left;
}
.sc-appl-jrny-offer-size-nudge--with-image .sc-appl-jrny-offer-size-nudge__desc {
  padding: 8px 0;
  width: calc(100% - 120px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.sc-appl-jrny-offer-size-nudge--with-image .sc-appl-jrny-offer-size-nudge__desc p strong {
  color: #1f8845;
}
.sc-appl-jrny-offer-size-nudge-bottom-arrow {
  margin: 0px 0 16px;
}
.sc-appl-jrny-offer-size-nudge-bottom-arrow::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  background-color: #fafafa;
  border-right: 1px solid #a9c7e9;
  border-bottom: 1px solid #a9c7e9;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  bottom: -6px;
  left: 0;
  right: 10px;
  margin-left: auto;
}
.sc-appl-jrny-offer-size-nudge.hidden {
  display: none;
}
.sc-appl-jrny-offer-size-nudge--with-image-bg {
  position: relative;
  min-height: 50px;
  padding: 4px 16px 4px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 14px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 1px solid #ddd;
  margin: 0 0 16px 0;
  background-size: contain;
  padding-left: 110px;
  background-repeat: no-repeat;
}

.sc-appl-jrny-slider__body {
  background: #fff;
  border-radius: 6px;
  padding: 12px;
  margin-bottom: 16px;
  position: relative;
  width: 100%;
}

/********** Range Input Styles **********/
/* Styling for the track */
.sc-application-range-slider {
  -webkit-appearance: none;
  /* Hide the default appearance */
  width: 100%;
  height: 4px;
  background: -webkit-gradient(linear, left top, right top, color-stop(100%, #0f7aed), to(#eee));
  background: linear-gradient(to right, #0f7aed 100%, #eee 100%);
  border-radius: 5px;
  outline: none;
}
.sc-application-range-slider--transparent {
  position: absolute;
  background: transparent;
  z-index: 2;
  cursor: pointer;
}

.sc-application-range-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  /* Hide the default thumb appearance */
  appearance: none;
  background-color: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  height: 28px;
  width: 28px;
  border: 1px solid #4579ff;
  z-index: 2;
}

.sc-application-range-slider::-moz-range-thumb {
  height: 28px;
  width: 28px;
  background-color: #fff;
  border: 1px solid #4579ff;
  border-radius: 50%;
  cursor: pointer;
  z-index: 2;
}

.sc-appl-installment-detail {
  border-radius: 6px;
  padding: 12px;
  margin-bottom: 32px;
  position: relative;
  width: 100%;
  border: 1px solid #4579ff;
  background-color: #f0f9ff;
}
.sc-appl-installment-detail:has(.sc-appl-installment-detail__badges) {
  padding: 32px 12px 12px;
}
.sc-appl-installment-detail__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 8px 0 4px;
  font-size: 14px;
  color: #191919;
}
.sc-appl-installment-detail__item p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.sc-appl-installment-detail__values {
  font-size: 20px;
  font-weight: 400;
  padding: 0 0 8px;
  border-bottom: 1px solid #4579ff;
}
.sc-appl-installment-detail__values-title {
  font-weight: 500;
}
.sc-appl-installment-detail__fee-titles {
  font-size: 16px;
  font-weight: 400;
  position: relative;
}
.sc-appl-installment-detail__fee-titles strong {
  font-weight: 500;
}
.sc-appl-installment-detail__fee {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  padding: 4px 0;
}
.sc-appl-installment-detail__fee::before {
  content: "";
  border-left: 2px dotted #a9c7e9;
  height: 100%;
  position: absolute;
  left: 7px;
}
.sc-appl-installment-detail__fee-number, .sc-appl-installment-detail__fee-icon {
  width: 16px;
  height: 16px;
  background: #a9c7e9;
  border-radius: 50%;
  position: relative;
  font-size: 10px;
  font-weight: 500;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #fff;
  margin-right: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 2px;
}
.sc-appl-installment-detail__fee-icon svg {
  width: 17px;
  height: 17px;
  -webkit-transform: rotate(270deg);
      -ms-transform: rotate(270deg);
          transform: rotate(270deg);
}
.sc-appl-installment-detail__badges {
  position: absolute;
  right: 0;
  top: 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.sc-appl-installment-detail__badges .sc-appl-jrny-badge {
  position: relative;
}
.sc-appl-installment-detail__fee-amount {
  font-weight: 500;
}
.sc-appl-installment-detail__fee-currency {
  font-weight: 400;
}

.sc-appl-jrny-error-message {
  color: #d0011b;
  font-size: 12px;
  padding-top: 8px;
  display: none;
}
.error .sc-appl-jrny-error-message {
  display: block;
}
.success .sc-appl-jrny-error-message {
  display: block;
  color: #008738;
}
.success .sc-appl-jrny-error-message.hidden {
  display: none;
}

.sc-appl-jrny-check__input {
  position: absolute;
  opacity: 0;
  height: 0;
  width: 0;
}
.sc-appl-jrny-check__input:checked ~ .sc-appl-jrny-check__check::before {
  border-color: #2772c7;
  background: #2772c7;
}
.sc-appl-jrny-check__input:checked ~ .sc-appl-jrny-check__check::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 6px;
  width: 4px;
  height: 8px;
  border: solid #fff;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}
.sc-appl-jrny-check__check {
  position: absolute;
  top: 0;
  bottom: 0;
}
.sc-appl-jrny-check__check::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  height: 16px;
  width: 16px;
  cursor: pointer;
  border-radius: 4px;
  background: #fff;
  border: 2px solid #555;
}

.sc-appl-jrny-footer {
  -webkit-box-shadow: 0px 2px 14px rgba(220, 220, 220, 0.5);
          box-shadow: 0px 2px 14px rgba(220, 220, 220, 0.5);
  background-color: #fff;
  position: fixed;
  width: 100%;
  bottom: 0;
  left: 0;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  z-index: 2;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  max-width: 1200px;
  margin: auto;
}
.sc-appl-jrny-footer__wrapper {
  padding: 16px;
}
.sc-appl-jrny-footer .sc-appl-jrny-card {
  background-color: #fafafa;
  border-radius: 0;
  margin-bottom: 0;
  border: none;
  border-top: 1px solid #ccc;
}
.sc-appl-jrny-footer__btn {
  font-family: "SC Prosper Sans";
  background: #2772c7;
  border-radius: 27px;
  width: 100%;
  height: 40px;
  font-weight: 500;
  font-size: 16px;
  color: #fff;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  -webkit-transition: background 200ms;
  transition: background 200ms;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  white-space: nowrap;
}
.sc-appl-jrny-footer__btn--transparent {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: #fff;
  border: none;
  padding-right: 16px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #2772c7;
  width: auto;
}
.sc-appl-jrny-footer__btn--bordered {
  color: #2772c7;
  background: transparent;
  border: 1px solid #2772c7;
}
.sc-appl-jrny-footer__btn--small {
  max-width: 90px;
}
.sc-appl-jrny-footer__btn-back-arrow {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.sc-appl-jrny-footer__btn-back-arrow svg,
.sc-appl-jrny-footer__btn-back-arrow img {
  width: 17px;
  display: block;
  margin-right: 12px;
}
.sc-appl-jrny-footer__btn:disabled, .sc-appl-jrny-footer__btn.disabled {
  background: #ccc;
  pointer-events: none;
}
.sc-appl-jrny-footer__back-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.sc-appl-jrny-input {
  position: relative;
  margin-bottom: 32px;
}
.sc-appl-jrny-input__title {
  font-size: 14px;
  color: #191919;
  margin-bottom: 12px;
  font-weight: 500;
  display: inline-block;
}
.sc-appl-jrny-input__input {
  display: block;
  width: 100%;
  height: 42px;
  border: 1px solid #ccc;
  background-color: #fff;
  border-radius: 6px;
  padding: 0 16px;
  font-size: 16px;
  font-family: "SC Prosper Sans";
}
.sc-appl-jrny-input__input:disabled, .sc-appl-jrny-input__input.disabled {
  background: #ccc;
  pointer-events: none;
}

.sc-appl-jrny-popup,
.sc-appl-jrny-modal {
  position: fixed;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(25, 25, 25, 0.8);
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.sc-appl-jrny-popup.visible,
.sc-appl-jrny-modal.visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.sc-appl-jrny-popup.visible .sc-appl-jrny-popup__dialog,
.sc-appl-jrny-popup.visible .sc-appl-jrny-modal__dialog,
.sc-appl-jrny-modal.visible .sc-appl-jrny-popup__dialog,
.sc-appl-jrny-modal.visible .sc-appl-jrny-modal__dialog {
  opacity: 1;
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}
.sc-appl-jrny-popup__dialog,
.sc-appl-jrny-modal__dialog {
  background-color: #fff;
  max-width: 400px;
  width: calc(100% - 1.25em);
  border-radius: 32px;
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
          box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  margin: 0.625em;
  position: fixed;
  bottom: 0.5em;
  opacity: 0;
  -webkit-transform: scale(0.8);
      -ms-transform: scale(0.8);
          transform: scale(0.8);
  -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, transform 0.3s ease;
  transition: opacity 0.3s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
}
.sc-appl-jrny-popup__coupon-timestamp-dialog,
.sc-appl-jrny-modal__coupon-timestamp-dialog {
  border-radius: 43px 24px !important;
}
.sc-appl-jrny-popup__body,
.sc-appl-jrny-modal__body {
  text-align: center;
  padding: 32px;
}
.sc-appl-jrny-popup__body-title,
.sc-appl-jrny-modal__body-title {
  font-size: 16px;
  color: #2772c7;
  margin-bottom: 0.75em;
}
.sc-appl-jrny-popup__coupon-timestamp,
.sc-appl-jrny-modal__coupon-timestamp {
  text-align: left !important;
}
.sc-appl-jrny-popup__title,
.sc-appl-jrny-modal__title {
  font-size: 16px;
  color: #2772c7;
  margin-bottom: 0.75em;
}
.sc-appl-jrny-popup__title--error,
.sc-appl-jrny-modal__title--error {
  color: #d0011b;
  font-weight: 500;
}
.sc-appl-jrny-popup__coupon-timestamp-title,
.sc-appl-jrny-modal__coupon-timestamp-title {
  font-size: 18px !important;
  color: #0c3a66 !important;
  font-weight: 500 !important;
  margin-top: 14px !important;
}
.sc-appl-jrny-popup__footer,
.sc-appl-jrny-modal__footer {
  border-top: 1px solid #e1e1e1;
}
.sc-appl-jrny-popup__close-btn, .sc-appl-jrny-popup__back-btn,
.sc-appl-jrny-modal__close-btn,
.sc-appl-jrny-modal__back-btn {
  font-family: "SC Prosper Sans";
  border: none;
  background: none;
  text-align: center;
  width: 100%;
  font-weight: 500;
  font-size: 16px;
  cursor: pointer;
  padding: 16px;
}
.sc-appl-jrny-popup__close-btn.blue, .sc-appl-jrny-popup__back-btn.blue,
.sc-appl-jrny-modal__close-btn.blue,
.sc-appl-jrny-modal__back-btn.blue {
  background: #2772c7;
  color: #fff;
}
.sc-appl-jrny-popup a.sc-appl-jrny-popup__close-btn,
.sc-appl-jrny-modal a.sc-appl-jrny-popup__close-btn {
  color: #000;
  display: block;
}
.sc-appl-jrny-popup--center .sc-appl-jrny-popup__dialog,
.sc-appl-jrny-modal--center .sc-appl-jrny-popup__dialog {
  bottom: auto;
}
.sc-appl-jrny-popup__exit-offer,
.sc-appl-jrny-modal__exit-offer {
  background: #e5f5ed;
  color: #000;
  font-size: 14px;
  padding: 6px 12px;
  border-radius: 5px;
  border: 1px solid #007932;
}
.sc-appl-jrny-popup__exit-offer-msg,
.sc-appl-jrny-modal__exit-offer-msg {
  font-size: 13px;
  padding: 4px;
}
.sc-appl-jrny-popup .sc-continue-btn,
.sc-appl-jrny-modal .sc-continue-btn {
  font-size: 13px;
  font-family: "SC Prosper Sans";
}
.sc-appl-jrny-popup__expire-footer,
.sc-appl-jrny-modal__expire-footer {
  width: 100%;
  background: #fff;
  padding: 16px 24px;
  border-bottom-left-radius: 24px;
  border-bottom-right-radius: 43px;
}
.sc-appl-jrny-popup__expire-footer .sc-btn,
.sc-appl-jrny-modal__expire-footer .sc-btn {
  margin-top: 16px;
}
.sc-appl-jrny-popup__expire-footer .sc-btn:first-child,
.sc-appl-jrny-modal__expire-footer .sc-btn:first-child {
  margin-top: 0;
}
.sc-appl-jrny-popup__coupon-expire-btn,
.sc-appl-jrny-modal__coupon-expire-btn {
  border-radius: 24px 0px 43px 24px;
  width: 100%;
  background: #0473ea;
  color: #fff;
  padding: 8px 25px;
  border: none;
  font-weight: 700;
  font-size: 18px;
  text-align: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  grid-gap: 10px;
  gap: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
}

.coupon-timestamp-expire-desc {
  color: #0c3a66;
  font-size: 12px;
  font-weight: 400;
}

.coupon-timestamp-desc-contact {
  color: #2772c7 !important;
}

.sc-appl-jrny-modal__dialog {
  max-width: 600px;
  border-radius: 20px 20px 0 0;
  margin: 0;
  width: 100%;
  height: calc(100% - 32px);
  bottom: 0;
  border-bottom: 1px solid #e1e1e1;
}
.sc-appl-jrny-modal__content {
  height: 100%;
}
.sc-appl-jrny-modal__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 16px;
  font-weight: 500;
}
.sc-appl-jrny-modal__close {
  border: none;
  background: #fff;
  padding-left: 16px;
  cursor: pointer;
  right: 16px;
  position: absolute;
}
.sc-appl-jrny-modal__close svg {
  width: 22px;
  height: 22px;
}
.sc-appl-jrny-modal__body {
  text-align: left;
  padding: 32px 16px;
  background: #f2f2f2;
  height: calc(100% - 140px);
  overflow-y: auto;
  width: 100%;
}
.sc-appl-jrny-modal__body:has(.sc-appl-jrny-doc) {
  padding: 0;
}
.sc-appl-jrny-modal__body .sc-appl-jrny-sub-section__body {
  border: 1px solid transparent;
  margin-bottom: 0;
}
.sc-appl-jrny-modal__body-title {
  font-weight: 400;
  line-height: 1.2;
  color: #000;
}
.sc-appl-jrny-modal__body p {
  font-weight: 500;
}
.sc-appl-jrny-modal__text-content {
  padding-bottom: 20px;
}
.sc-appl-jrny-modal__options {
  display: block;
  margin-bottom: 16px;
}
.sc-appl-jrny-modal__footer {
  border-top: none;
  -webkit-box-shadow: 0px 2px 14px 0px rgba(220, 220, 220, 0.5);
          box-shadow: 0px 2px 14px 0px rgba(220, 220, 220, 0.5);
  position: fixed;
  width: 100%;
  bottom: 0;
  background: #fff;
  padding: 16px;
  grid-gap: 0.875em;
  gap: 0.875em;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.sc-appl-jrny-modal.sc-appl-jrny-login .sc-appl-jrny-modal__dialog {
  height: 100%;
  border-radius: 0;
  background-color: #f2f2f2;
}
.sc-appl-jrny-modal.sc-appl-jrny-login .sc-appl-jrny-modal__body {
  padding: 0 16px;
}
.sc-appl-jrny-modal.sc-appl-jrny-login .sc-appl-jrny-modal__close {
  background: #f2f2f2;
}

.sc-appl-jrny-popup {
  z-index: 3;
}
.sc-appl-jrny-popup--intro .sc-appl-jrny-popup__dialog {
  border-radius: 43px 24px 55px 34px;
}
.sc-appl-jrny-popup--intro .sc-appl-jrny-popup__footer {
  padding: 16px 24px;
}
.sc-appl-jrny-popup--intro .sc-appl-jrny-popup__content-head {
  text-align: left;
  margin-bottom: 8px;
}
.sc-appl-jrny-popup--intro .sc-appl-jrny-popup__content-title {
  font-size: 20px;
  font-weight: 500;
}
.sc-appl-jrny-popup--intro .sc-appl-jrny-popup__content-sub-title {
  margin-top: 12px;
  font-size: 16px;
  font-weight: 500;
}
.sc-appl-jrny-popup--intro .sc-appl-jrny-popup__content {
  color: #0c3a66;
  text-align: left;
}
.sc-appl-jrny-popup--intro .sc-appl-jrny-popup__content-desc {
  font-size: 14px;
}
.sc-appl-jrny-popup--intro .sc-appl-jrny-popup__content-desc ul {
  margin-top: 16px;
}
.sc-appl-jrny-popup--intro .sc-appl-jrny-popup__content-desc li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 12px;
}
.sc-appl-jrny-popup--intro .sc-appl-jrny-popup__content-desc li:last-child {
  margin-bottom: 0;
}
.sc-appl-jrny-popup--intro .sc-appl-jrny-popup__content-list-icon {
  margin-right: 16px;
}
.sc-appl-jrny-popup--intro .sc-appl-jrny-popup__content-list-icon svg {
  width: 32px;
  height: 32px;
}
.sc-appl-jrny-popup--intro .sc-appl-jrny-popup__content-highlight {
  color: #008738;
}
.sc-appl-jrny-popup--intro .sc-appl-jrny-footer__btn {
  border-radius: 24px 0 43px 24px;
}

.sc-appl-jrny-doc {
  background: #fff;
  border-top: 1px solid #e1e1e1;
}
.sc-appl-jrny-doc__tab {
  padding: 0 0.5em 0 16px;
  position: fixed;
  background: #fff;
  width: 100%;
  top: 57px;
}
.sc-appl-jrny-doc__tabs {
  font-size: 0.75em;
  grid-gap: 10px;
  gap: 10px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  padding: 0;
  margin: 0;
}
.sc-appl-jrny-doc__tab-link {
  padding-bottom: 0.75em;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-transform: uppercase;
  color: #6f6f6f;
  font-weight: 500;
  cursor: pointer;
  position: relative;
}
.sc-appl-jrny-doc__tab-link.active {
  color: #191919;
  border-bottom: 2px solid #191919;
}
.sc-appl-jrny-doc__tab-link.completed {
  padding-right: 1.25em;
}
.sc-appl-jrny-doc__tab-link.completed::after {
  content: "";
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
  position: absolute;
  right: 1px;
  top: 5px;
  border: solid #2772c7;
  border-width: 0 2px 2px 0;
  height: 8px;
  width: 3px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.sc-appl-jrny-doc__tab-link.completed::before {
  content: "";
  width: 16px;
  height: 16px;
  border: 1px solid #2772c7;
  display: block;
  position: absolute;
  border-radius: 50%;
  right: -14px;
  top: 10px;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.sc-appl-jrny-doc__tab-panel {
  background: #f2f2f2;
  padding: 3em 16px 0;
}
.sc-appl-jrny-doc__content {
  margin-bottom: 30px;
}
.sc-appl-jrny-doc__content--active {
  display: block;
}
.sc-appl-jrny-doc__content ul {
  list-style: decimal;
  padding-left: 1em;
  margin-bottom: 1em;
}
.sc-appl-jrny-doc__content ul ul {
  list-style: lower-alpha;
}
.sc-appl-jrny-doc__content ul ul ul {
  list-style: lower-roman;
  font-size: 12px;
}
.sc-appl-jrny-doc__content li,
.sc-appl-jrny-doc__content p {
  color: #555;
  font-weight: 400;
  font-size: 14px;
  margin-bottom: 0.3125em;
}
.sc-appl-jrny-doc__content a {
  color: #555;
  font-size: 14px;
}
.sc-appl-jrny-doc__content span {
  color: #000;
  font-weight: 400;
  font-size: 1em;
  display: block;
  margin-bottom: 8px;
}
.sc-appl-jrny-doc__content h4 {
  font-weight: 500;
  font-size: 1.125em;
}
.sc-appl-jrny-doc__content table {
  border-left: #ccc solid 1px;
  border-top: #ccc solid 1px;
  margin-bottom: 1.25em;
}
.sc-appl-jrny-doc__content table thead {
  text-align: center;
}
.sc-appl-jrny-doc__content table td {
  border-right: #ccc solid 1px;
  border-bottom: #ccc solid 1px;
  padding: 0.25em;
}
.sc-appl-jrny-doc__content table th {
  background-color: #828589;
  color: #fff;
  text-align: left;
  padding: 0.25em;
}
.sc-appl-jrny-doc__content table th p {
  color: inherit;
}

.sc-appl-jrny-msg-alert {
  padding: 12px;
  font-size: 14px;
  background: #eee;
  margin: 16px 0;
  border: 1px solid #e1e1e1;
  border-radius: 4px;
  color: #191919;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
      align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.sc-appl-jrny-msg-alert span,
.sc-appl-jrny-msg-alert strong {
  display: block;
}
.sc-appl-jrny-msg-alert--blue {
  border: 2px solid #a9c7e9;
  background: #f0f6fb;
}
.sc-appl-jrny-msg-alert--green {
  background-color: #ecfdf8;
  border: 1px solid #00d500;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
  font-size: 12px;
}
.sc-appl-jrny-msg-alert--green .sc-appl-jrny-msg-alert__icon svg {
  width: 20px;
  height: 20px;
  margin-right: 4px;
}
.sc-appl-jrny-msg-alert--green .sc-appl-jrny-msg-alert__icon svg path {
  stroke: #fff;
  fill: #38d200;
}
.sc-appl-jrny-msg-alert.hidden {
  display: none;
}
.sc-appl-jrny-msg-alert__link {
  color: #2772c7;
  font-size: 14px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: "SC Prosper Sans";
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
  text-underline-offset: 2px;
}

.sc-appl-jrny-review .sc-appl-jrny-card__inner {
  padding: 16px 0;
  border-bottom: 1px solid #ccc;
}
.sc-appl-jrny-review .sc-appl-jrny-transaction__details {
  padding-left: 0;
}
.sc-appl-jrny-review .sc-appl-jrny-transaction {
  border-bottom: 0;
}
.sc-appl-jrny-review__title {
  color: #6f6f6f;
  font-size: 0.875em;
  font-weight: 500;
  padding-right: 0.5em;
}
.sc-appl-jrny-review__value {
  font-size: 14px;
}

.sc-appl-jrny-creditcard__number {
  font-weight: 400;
  font-size: 0.875em;
  color: #777;
  display: block;
}
.sc-appl-jrny-creditcard__img {
  padding-right: 16px;
  max-width: 60px;
}
.sc-appl-jrny-creditcard .sc-appl-jrny-dropdown__inner {
  padding-right: 16px;
}

.sc-appl-jrny-dropdown {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.sc-appl-jrny-dropdown__inner h3 {
  font-weight: 500;
  font-size: 0.875em;
  color: #191919;
  padding-right: 0.75em;
}
.sc-appl-jrny-dropdown__inner span {
  font-weight: 400;
  font-size: 0.875em;
  color: #777;
}
.sc-appl-jrny-dropdown__collapse {
  overflow: hidden;
  background: #fff;
  border-top: 0px solid #f2f2f2;
  max-height: 0;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.sc-appl-jrny-dropdown__collapse.visible {
  height: auto;
  border-top-width: 1px;
  max-height: 500px;
  -webkit-transition: max-height 0.5s ease;
  transition: max-height 0.5s ease;
}
.sc-appl-jrny-dropdown__collapse .sc-appl-jrny-input {
  margin-bottom: 0.625em;
  padding: 16px;
}
.sc-appl-jrny-dropdown__collapse .sc-appl-jrny-input__input, .sc-appl-jrny-dropdown__collapse .sc-appl-jrny-input__select {
  border-color: #eee;
}
#sc-exit-intent-popup .sc-appl-jrny-dropdown__collapse {
  margin-top: 10px;
  padding-top: 10px;
}
.sc-appl-jrny-dropdown__number {
  font-weight: 400;
  font-size: 0.875em;
  color: #777;
  display: block;
}
.sc-appl-jrny-dropdown__img {
  padding-right: 16px;
  max-width: 60px;
}
.sc-appl-jrny-dropdown__link {
  color: #2772c7;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: normal;
      -ms-flex-align: normal;
          align-items: normal;
  line-height: 1.5;
  font-size: 14px;
}
.sc-appl-jrny-dropdown__link svg {
  width: 16px;
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}
.sc-appl-jrny-dropdown__arrow {
  border: solid #191919;
  border-width: 0 3px 3px 0;
  display: inline-block;
  width: 11px;
  height: 11px;
  padding: 4px;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
  margin-left: auto;
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}
.sc-appl-jrny-dropdown__arrow.open .sc-appl-jrny-dropdown__arrow {
  -webkit-transform: rotate(-135deg);
      -ms-transform: rotate(-135deg);
          transform: rotate(-135deg);
  margin-top: 5px;
}

.sc-appl-jrny-modal-btn {
  cursor: pointer;
}

.sc-appl-jrny-sub-section__title {
  font-size: 0.875em;
  color: #191919;
  margin-bottom: 0.75em;
  font-weight: 500;
  display: block;
}
.sc-appl-jrny-sub-section__body {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background: #fff;
  border-radius: 6px;
  padding: 0.75em;
  margin-bottom: 1em;
  position: relative;
  width: 100%;
  border: 1px solid #ccc;
}
.sc-appl-jrny-sub-section__body.error {
  border: 1px solid #d0021b;
  margin-bottom: 0;
}
.sc-appl-jrny-sub-section__body.error ~ .sc-appl-jrny-input__error-message {
  display: block;
  margin-bottom: 2em;
}
.sc-appl-jrny-sub-section__item {
  display: inline-block;
  margin-top: 16px;
  width: 100%;
}

.sc-appl-jrny-review-agree {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.sc-appl-jrny-review-agree p {
  padding-left: 32px;
  font-weight: 400;
}
.sc-appl-jrny-review-agree a {
  color: #2772c7;
  font-size: 14px;
  background: 0 0;
  border: none;
  cursor: pointer;
  font-family: "SC Prosper Sans";
  text-decoration: none;
}
.sc-appl-jrny-review-agree .sc-appl-jrny-check__check {
  left: 8px;
}
.sc-appl-jrny-review-agree .sc-appl-jrny-check__check::before {
  height: 20px;
  width: 20px;
  border-radius: 6px;
  top: 20px;
  left: 8px;
  -webkit-transform: none;
      -ms-transform: none;
          transform: none;
}
.sc-appl-jrny-review-agree .sc-appl-jrny-check__input:checked ~ .sc-appl-jrny-check__check::after {
  top: 23px;
  left: 15px;
  width: 6px;
  height: 11px;
}

.sc-appl-jrny-reminder__desc {
  padding-right: 16px;
}
.sc-appl-jrny-reminder__desc span {
  display: block;
  line-height: 1.2;
}
.sc-appl-jrny-reminder__desc p {
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5;
  color: #6b6e73;
}
.sc-appl-jrny-reminder__desc strong {
  font-size: 13px;
  font-weight: 500;
  line-height: 1.4;
}
.sc-appl-jrny-reminder__desc {
  width: calc(100% - 25px);
}
.sc-appl-jrny-reminder__img {
  width: 25px;
  height: 25px;
}

.sc-appl-jrny-submission {
  background: #fff;
  margin: 0;
}
.sc-appl-jrny-submission__head {
  display: none;
}
.sc-appl-jrny-submission__logo {
  width: 160px;
  padding: 16px 0;
}
.sc-appl-jrny-submission__view {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  margin: 0 auto;
}
.sc-appl-jrny-submission__title {
  font-weight: 400;
  font-size: 1.5em;
  color: #fff;
  padding: 32px 0;
}
.sc-appl-jrny-submission__description {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 100%;
  text-align: center;
  margin-bottom: 32px;
}
.sc-appl-jrny-submission__description strong {
  font-weight: 400;
  font-size: 1.125em;
  margin-bottom: 0.5em;
  display: inline-block;
}
.sc-appl-jrny-submission__description p,
.sc-appl-jrny-submission__description a {
  padding: 0.5em 0;
  font-weight: 400;
  font-size: 0.875em;
  color: #191919;
}
.sc-appl-jrny-submission.sc-appl-jrny-page.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background: -webkit-gradient(linear, left top, right top, from(#1f2f87), to(#0a498c));
  background: linear-gradient(90deg, #1f2f87 0%, #0a498c 100%);
}
.sc-appl-jrny-submission__box {
  background: #fff;
  border-radius: 20px 20px 0px 0px;
  padding: 32px 16px 40px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.sc-appl-jrny-submission__img {
  display: block;
  margin: 0 auto;
  padding-top: 32px;
  width: 160px;
}
.sc-appl-jrny-submission__ref-id {
  font-size: 0.75em;
  color: #777;
  padding-top: 16px;
  padding-bottom: 40px;
  border-top: 1px solid #eee;
  text-align: center;
  display: block;
}
.sc-appl-jrny-submission__msg {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 100%;
}
.sc-appl-jrny-submission__msg h4 {
  font-weight: 500;
  font-size: 1.125em;
}
.sc-appl-jrny-submission__msg p {
  font-size: 0.75em;
}
.sc-appl-jrny-submission__fail, .sc-appl-jrny-submission__reject, .sc-appl-jrny-submission__submit, .sc-appl-jrny-submission__approve {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.sc-appl-jrny-submission__fail.visible, .sc-appl-jrny-submission__reject.visible, .sc-appl-jrny-submission__submit.visible, .sc-appl-jrny-submission__approve.visible {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-top: 24px;
}
.sc-appl-jrny-submission__footer {
  -webkit-box-shadow: 0px 2px 14px rgba(220, 220, 220, 0.5);
          box-shadow: 0px 2px 14px rgba(220, 220, 220, 0.5);
  background-color: #fff;
  position: fixed;
  width: 100%;
  bottom: 0;
  left: 0;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  z-index: 2;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  max-width: 1200px;
  margin: auto;
}
.sc-appl-jrny-submission__timeline {
  margin-bottom: 32px;
}
.sc-appl-jrny-submission__timeline ul {
  padding-left: 8px;
  margin-top: 0.5em;
}
.sc-appl-jrny-submission__helplink {
  margin-bottom: 32px;
}
.sc-appl-jrny-submission__check {
  font-size: 0.875em;
  font-weight: 500;
  padding-bottom: 16px;
  border-left: 2px dotted #6f6f6f;
  position: relative;
  padding-left: 1.25em;
  list-style-type: none;
}
.sc-appl-jrny-submission__check::before {
  content: "";
  left: -12px;
  top: 0px;
  border: 2px solid #191919;
  width: 20px;
  height: 20px;
  background: #fff;
  display: block;
  position: absolute;
  border-radius: 50%;
}
.sc-appl-jrny-submission__check.completed::after {
  content: "";
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
  position: absolute;
  left: -4px;
  top: 5px;
  border: solid #191919;
  border-width: 0 2px 2px 0;
  height: 9px;
  width: 5px;
}
.sc-appl-jrny-submission__check p {
  font-size: 0.875em;
  font-weight: 400;
}
.sc-appl-jrny-submission__check--cross.completed::after {
  content: "x";
  -webkit-transform: rotate(0);
      -ms-transform: rotate(0);
          transform: rotate(0);
  position: absolute;
  left: -6px;
  top: -4px;
  border: solid #191919;
  border-width: 0px;
  height: 11px;
  font-size: 15px;
}
.sc-appl-jrny-submission__desc-amount {
  display: inline-block;
}
.sc-appl-jrny-submission__details {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.sc-appl-jrny-submission__details svg {
  width: 22px;
  height: 22px;
}
.sc-appl-jrny-submission__detail {
  padding: 0 0 16px 8px;
  width: 100%;
}
.sc-appl-jrny-submission__detail .sc-appl-jrny-card__title {
  color: #6b6e73;
  font-size: 14px;
}
.sc-appl-jrny-submission__amt {
  border-left: 4px solid #eee;
  padding-left: 8px;
  margin-top: 8px;
}
.sc-appl-jrny-submission__fee-desc {
  color: #6b6e73;
  font-size: 12px;
}
.sc-appl-jrny-submission .sc-appl-jrny-card__value {
  font-size: 16px;
  text-align: right;
}
.sc-appl-jrny-submission .sc-appl-jrny-review__value {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.sc-appl-jrny-offer-widget {
  background: rgb(15, 122, 237);
  background: linear-gradient(135.08deg, #0080db -30.67%, #00a647 63.6%);
  padding: 2px;
  border-radius: 8px;
  max-width: 400px;
  margin-bottom: 16px;
}
.sc-appl-jrny-offer-widget__box {
  border-radius: 6px;
  padding: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: #fff;
  position: relative;
}
.sc-appl-jrny-offer-widget__box::after {
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(119.31deg, rgba(57, 211, 1, 0.02) 68.54%, rgba(57, 211, 1, 0.2) 105.06%);
}
.sc-appl-jrny-offer-widget__title {
  font-size: 14px;
  color: #000;
  font-weight: 500;
}
.sc-appl-jrny-offer-widget strong,
.sc-appl-jrny-offer-widget span {
  color: #29a048;
}
.sc-appl-jrny-offer-widget__desc {
  font-size: 12px;
  color: #6b6e73;
  margin-top: 8px;
}
.sc-appl-jrny-offer-widget__content {
  max-width: 300px;
  padding-right: 8px;
  min-height: 110px;
  z-index: 2;
  width: 90%;
}
.sc-appl-jrny-offer-widget .sc-appl-jrny-link {
  margin-top: 8px;
  display: block;
  padding: 0;
  text-align: left;
}
.sc-appl-jrny-offer-widget .sc-appl-jrny-link .sc-appl-jrny-underline-text {
  text-decoration: underline;
  color: #2772c7;
}
.sc-appl-jrny-offer-widget .sc-appl-jrny-link .sc-appl-jrny-apply-text {
  color: #000;
}
.sc-appl-jrny-offer-widget__img img {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.sc-appl-jrny-borrow__values {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 16px;
}
.sc-appl-jrny-borrow__values-currency {
  font-weight: 500;
  font-size: 1.25em;
  color: #191919;
  width: 50%;
}
.sc-appl-jrny-borrow__values-amount {
  font-weight: 400;
  font-size: 1.75em;
  color: #0053b2;
  line-height: 1.25;
  border: none;
  width: 50%;
  text-align: right;
  padding: 0;
  border-radius: 0;
  background: none;
  -webkit-text-decoration: dotted;
          text-decoration: dotted;
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 6px;
}
.sc-appl-jrny-borrow__values-amount.focus-visible {
  outline: none;
}
.sc-appl-jrny-borrow__values-amount:focus-visible {
  outline: none;
}
.sc-appl-jrny-borrow__rangepicker {
  margin-bottom: 16px;
}
.sc-appl-jrny-borrow__desc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-size: 0.75em;
}
.sc-appl-jrny-borrow__desc-content {
  color: #6f6f6f;
  font-weight: 500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.sc-appl-jrny-borrow__desc-amount-bold {
  font-weight: 500;
}
.sc-appl-jrny-borrow__main {
  font-size: 14px;
  color: #6b6e73;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-weight: 500;
  margin-bottom: 8px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

/* Rich Text Editor */
.sc-appl-jrny-repayment__tenors {
  width: 100%;
  overflow-x: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}
.sc-appl-jrny-repayment__tenor {
  min-width: 175px;
  margin-right: 10px;
  text-align: center;
}
.sc-appl-jrny-repayment__tenor:last-child {
  margin-right: 0;
}
.sc-appl-jrny-repayment__tenor .sc-appl-jrny-checkbox__input:checked ~ .sc-appl-jrny-checkbox__check {
  border: 1px solid #2772c7;
}
.sc-appl-jrny-repayment__tenor .sc-appl-jrny-checkbox__content-desc {
  font-size: 15px;
  font-weight: 400;
}
.sc-appl-jrny-repayment__sub-title {
  margin-bottom: 8px;
  display: block;
}
.sc-appl-jrny-repayment__details-status-tag {
  background: #ecfdf8;
  border-radius: 4px;
  color: #008738;
  font-weight: 500;
  font-size: 12px;
  padding: 0.125em 0.375em;
  display: inline-block;
}
.sc-appl-jrny-repayment .sc-appl-jrny-checkbox__check {
  font-size: 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border: 1px solid transparent;
  font-weight: 500;
  background: #fff;
  border-radius: 6px;
  padding: 12px;
  margin-bottom: 16px;
  position: relative;
  width: 100%;
  border: 1px solid #ccc;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.sc-appl-jrny-repayment .sc-appl-jrny-checkbox__check::before {
  display: none;
}
.sc-appl-jrny-repayment .sc-appl-jrny-checkbox__input:checked ~ .sc-appl-jrny-checkbox__check {
  border: 1px solid #2772c7;
}
@media (pointer: coarse) and (max-width: 768px) {
  body {
    /* Allow scrolling, prevent zoom */
    -ms-touch-action: pan-x pan-y;
        touch-action: pan-x pan-y;
    -webkit-user-select: none;
    -moz-user-select: none;
     -ms-user-select: none;
         user-select: none;
  }
}
@media (min-width: 681px) {
  .only-mobile {
    display: none;
  }
  .only-desktop {
    display: block;
  }
  .sc-appl-jrny-main {
    -webkit-box-shadow: 1px -26px 25px -11px rgba(0, 0, 0, 0.45);
            box-shadow: 1px -26px 25px -11px rgba(0, 0, 0, 0.45);
  }
  .sc-appl-jrny-main__wrapper {
    padding-left: 16px;
    padding-right: 16px;
    max-width: 1404px;
    margin: 0 auto;
    height: auto;
    min-height: calc(100vh - 256px);
  }
  .sc-appl-jrny-main__content {
    width: calc(100% - 200px);
  }
  .sc-appl-jrny-main__content:has(.sc-appl-jrny-page.active) {
    width: 100%;
  }
  .sc-appl-jrny-main__logo {
    display: block;
    margin: 24px auto 0;
  }
  .sc-appl-jrny-main__logo img {
    width: 175px;
    padding: 16px;
    border-left: 1px solid #dedede;
  }
  .sc-appl-jrny-head__btn {
    display: block;
  }
  .sc-appl-jrny-card__title {
    font-size: 14px;
  }
  .sc-appl-jrny-footer__wrapper {
    margin-left: 182px;
    width: calc(100% - (350px + 4em));
  }
  .sc-appl-jrny-popup__dialog,
  .sc-appl-jrny-modal__dialog {
    position: relative;
  }
  .sc-appl-jrny-modal__dialog {
    border-radius: 20px;
    overflow: hidden;
  }
  .sc-appl-jrny-modal__header {
    padding: 1.5em 32px;
  }
  .sc-appl-jrny-modal.sc-appl-jrny-login .sc-appl-jrny-modal__content, .sc-appl-jrny-modal.sc-appl-jrny-login .sc-appl-jrny-modal__dialog, .sc-appl-jrny-modal.sc-appl-jrny-login .sc-appl-jrny-modal__body {
    height: auto;
  }
  .sc-appl-jrny-modal.sc-appl-jrny-login .sc-appl-jrny-modal__dialog {
    border-radius: 20px;
    overflow: hidden;
  }
  .sc-appl-jrny-submission {
    margin: 0;
    height: auto;
  }
  .sc-appl-jrny-submission__head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .sc-appl-jrny-submission__title {
    font-size: 32px;
    padding: 0;
  }
  .sc-appl-jrny-submission__img {
    display: block;
    margin: 0;
  }
  .sc-appl-jrny-submission__box {
    padding: 32px 32px;
    max-width: 450px;
    height: 100%;
    border-radius: 20px;
  }
  .sc-appl-jrny-submission__fail, .sc-appl-jrny-submission__reject, .sc-appl-jrny-submission__submit, .sc-appl-jrny-submission__approve {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-pack: left;
        -ms-flex-pack: left;
            justify-content: left;
  }
  .sc-appl-jrny-submission__view {
    -webkit-box-pack: left;
        -ms-flex-pack: left;
            justify-content: left;
  }
  .sc-appl-jrny-submission__ref-id {
    padding-bottom: 0;
  }
  .sc-appl-jrny-submission.sc-appl-jrny-page.active {
    padding: 0 40px 80px;
    min-height: 100vh;
    -webkit-box-pack: left;
        -ms-flex-pack: left;
            justify-content: left;
  }
}
@media (min-width: 1024px) {
  .sc-appl-jrny-main__wrapper {
    padding: 0;
  }
  .sc-appl-jrny-main__content {
    width: calc(100% - 300px);
  }
  .sc-appl-jrny-footer__wrapper {
    width: calc(100% - (550px + 4em));
    margin-left: 282px;
  }
  .sc-appl-jrny-submission__view {
    padding: 0 4em;
    -webkit-box-pack: left;
        -ms-flex-pack: left;
            justify-content: left;
  }
  .sc-appl-jrny-submission__img {
    width: 250px;
    padding-top: 0;
  }
  .sc-appl-jrny-offer-badge-with-image .sc-appl-jrny-offer-badge__img {
    width: 80px;
  }
  .sc-appl-jrny-offer-badge-with-image .sc-appl-jrny-offer-badge__desc {
    width: calc(100% - 80px);
  }
  .sc-appl-jrny-offer-size-nudge-with-image .sc-appl-jrny-offer-size-nudge__img {
    width: 80px;
  }
  .sc-appl-jrny-offer-size-nudge-with-image .sc-appl-jrny-offer-size-nudge__desc {
    width: calc(100% - 80px);
  }
  .sc-appl-jrny-borrow__values-amount {
    font-size: 1.75em;
  }
}