*{
    font-family: 'Raleway', sans-serif;
}

@media (max-width:1440px) and (min-width:769px){
    html{
        font-size: calc(0.1em + 1.05vw);
    }
}

@media (max-width:768px){
    html{
        font-size: 90%;
    }
}

@media print {
    .plan-content .sidebar,
    .repayment-plan .target-debt-container,
    .plan-content .content table tfoot tr th:last-child span.total,
    .plan-content .content table thead tr th{
        -webkit-print-color-adjust: exact !important;
        print-color-adjust: exact !important;
    }

    .repayment-plan .header{
        height: auto;
    }

    .repayment-plan > .header .title{
        text-align: right;
    }

    .repayment-plan .header > .container,
    .repayment-plan .cardboard_header .container{
        flex-direction: row;
    }

    .repayment-plan .cardboard_header .button{
        display: none;
    }

    .plan-content .buttons-container .button{
        display: none;
    }
}

@keyframes pulse {
    0% {
      -moz-box-shadow: 0 0 0 0 #00838F;
      box-shadow: 0 0 0 0 #00838F;
    }
    70% {
        -moz-box-shadow: 0 0 0 10px rgba(204,169,44, 0);
        box-shadow: 0 0 0 10px rgba(204,169,44, 0);
    }
    100% {
        -moz-box-shadow: 0 0 0 0 rgba(204,169,44, 0);
        box-shadow: 0 0 0 0 rgba(204,169,44, 0);
    }
}
body{
    background-color: #F7F7F8;
}

a{
    text-decoration: none;
    color: inherit;
}

img{
    height: auto;
    max-width: 100%;
}

body section{
    display: none;
    background-image: url(../images/background-lines.svg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 3.875rem 0;
}

body section:first-child{
    display: block;
}

/* Container & Col */
.container{
    max-width: 1080px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    position: relative;
}

.container > .col-12{
    width: 100%;
}

.container > .col-10{
    width: 83.33%;
}

.container > .col-8{
    width: 66.66%;
}

.container > .col-6{
    width: 50%;
}

.container > .col-4{
    width: 33.33%;
}

.container > .col-2{
    width: 16.66%;
}

/* Flex */
.d-flex{
    display: flex !important;
}

.justify-content-start{
    justify-content: start;
}
.justify-content-end{
    justify-content: end;
}
.justify-content-center{
    justify-content: center;
}
.justify-content-between{
    justify-content: space-between;
}
.justify-content-around{
    justify-content: space-around;
}

.align-items-start{
    align-items: flex-start;
}
.align-items-end{
    align-items: flex-end;
}
.align-items-center{
    align-items: center;
}
.align-items-baseline{
    align-items: baseline;
}
.align-items-stretch{
    align-items: stretch;
}

.align-self-start{
    align-self: flex-start;
}
.align-self-end{
    align-self: flex-end;
}
.align-self-center{
    align-self: center;
}
.align-self-baseline{
    align-self: baseline;
}
.align-self-stretch{
    align-self: stretch;
}

.flex-nowrap{
    flex-wrap: nowrap;
}
.flex-wrap{
    flex-wrap: wrap;
}
.flex-wrap-reverse{
    flex-wrap: wrap-reverse;
}

.align-content-start{
    align-content: flex-start;
}
.align-content-end{
    align-content: flex-end;
}
.align-content-center{
    align-content: center;
}
.align-content-around{
    align-content: space-around;
}
.align-content-stretch{
    align-content: stretch;
}

/* Buttons */
.button{
    border-radius: 30px;
    background-color: #1C2954;
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 0.75rem 1.875rem;
    display: flex;
    grid-gap: 6px;
    align-items: center;
    transition: .3s ease-in-out;
    width: fit-content;
}

.button:hover{
    padding: 0.75rem 0.975rem;
}

.button.button-blue{
    background-color: #1C2954;
}

.button.button-green{
    background-color: #00838F;
}

.button.button-green:hover{
    background-color: transparent;
    color: #00838F;
    border: 1px solid #00838F;
}

.button.button-outline{
    background-color: transparent;
    color: #1C2954;
    border: 2px solid #1D2A53;
    border-radius: 0;
    font-weight: 700;
}

.button img{
    display: inline-block;
    width: 0.975rem;
    height: 0.975rem;
    object-fit: contain;
}

/* Page Header */
section > .header{
    position: relative;
    background-image: url(../images/iStock-1288092444@2x.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    height: 16.25rem;
    padding: 1.875rem 0;
    display: flex;
}

section > .header:before{
    content: '';
    background-color: #192957;
    opacity: .8;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

section > .header .image-wedge{
    background-image: url(../images/Path-726.svg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center right;
    padding: 1rem 0 2rem;
    width: 100%;
    position: relative;
}

section > .header .image-wedge:before{
    content: '';
    position: absolute;
    top: 0;
    right: 100%;
    width: calc(calc(100vw - 1080px) / 2);
    height: 100%;
    background-color: #FFF;
}

section > .header .image-wedge img{
    max-width: 23.125rem;
}

section > .header .title{
    font-family: 'Raleway', sans-serif;
    font-size: 3.3125rem;
    color: #FFFEFA;
}

section > .content{
    margin: 0rem 0 5rem;
}

/* Cardboard */
.cardboard{
    background: #F7F7F7;
    box-shadow: 0px 3px 15px #00000033;
    border-bottom: 6px solid #FFC213;
}

.cardboard .cardboard_header{
    padding: 1rem 3.25rem;
}

.cardboard .cardboard_header .image{
    background-color: #fff;
    padding: .2rem 1.3125rem .5rem 0;
    position: relative;
    box-shadow: 0px 2px 3px #00000029;
    margin-left: -3.25rem;
    padding-left: 3.25rem;
}

.cardboard .cardboard_header .image:before{
    content: none;
    position: absolute;
    top: 0;
    right: 100%;
    width: 3.25em;
    height: 100%;
    background-color: #fff;
    box-shadow: 0px 2px 3px #00000029;
}

.cardboard .cardboard_header .image img{
    max-width: 6.5625rem;
}

.cardboard .cardboard_header .title{
    color: #1C2954;
    font-size: 2.375rem;
    font-family: 'Raleway', sans-serif;
    font-weight: 800;
    margin: 1rem;
}

.cardboard .cardboard_body{
    padding: 2.1875rem 3.25rem 3.125rem;
}

.cardboard .cardboard_body table{
    width: 100%;
    border-spacing: 0;
    border-collapse: collapse;
}

.cardboard .cardboard_body table thead tr th{
    color: #000000;
    font-size: 0.6875rem;
    font-weight: 700;
    text-align: center;
    padding: 9px 8px;
    background-color: #C9CDCE;
}

.cardboard .cardboard_body table thead tr th:first-child{
    text-align: left;
}

.cardboard .cardboard_body table tbody tr td{
    text-align: center;
    border-top: 1px solid #0000001a;
    border-bottom: 1px solid #0000001a;
    padding: 16px 8px;
    font-weight: 700;
}

.cardboard .cardboard_body table tbody tr td:first-child{
    text-align: left;
}

.cardboard .cardboard_body table .button{
    font-size: 0.75rem;
    color: #7F7F7F;
    padding: 4.5px 7px;
    border: 1px solid #707070;
    display: inline-flex;
    align-items: center;
    margin: 0 2px;
}

.cardboard .cardboard_body table .button.edit:after{
    content: 'Edit';
}

.cardboard .cardboard_body table .button.edit:before{
    content: 'XX';
    user-select: none;
    color: transparent;
    background-image: url(../images/edit.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.cardboard .cardboard_body table .button.delete:after{
    content: 'Delete';
}

.cardboard .cardboard_body table .button.delete:before{
    content: 'XX';
    user-select: none;
    color: transparent;
    background-image: url(../images/delete.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.cardboard .cardboard_body table .button.save,
.cardboard .cardboard_body table .button.add{
    border-radius: 0;
    border: none;
    background-color: #75884E;
    color: #fff;
    line-height: 1.45;
    vertical-align: top;
    min-width: 44px;
    justify-content: center;
}

.cardboard .cardboard_body table .button.save:after{
    content: 'Save';
}

.cardboard .cardboard_body table .button.add{
    background-color: #1C2954;
}

.cardboard .cardboard_body table .button.add:after{
    content: '+ Add';
}

.cardboard .cardboard_body table tbody tr td input{
    background-color: transparent;
    border: none;
    font-size: 0.9375rem;
    padding: 6.5px 8.5px;
    display: block;
    width: -webkit-fill-available;
}

.cardboard .cardboard_body table tbody tr td:nth-child(1),
.cardboard .cardboard_body table thead tr th:nth-child(1){
    width: 30%;
}

.cardboard .cardboard_body table tbody tr td:nth-child(1) input{
    font-weight: 700;
    color: #013A68;
}

.cardboard .cardboard_body table tbody tr td:nth-child(2){
    color: #00838F;
}

.cardboard .cardboard_body table tbody tr td:nth-child(2) input{
    display: block;
    font-size: 0.8125rem;
    font-weight: 700;
    color: #00838F;
    text-align: center;
}

.cardboard .cardboard_body table tbody tr td:nth-child(2) span:after{
    content: '%';
}

.cardboard .cardboard_body table tbody tr td:nth-child(3) input{
    color: #AC080E;
    text-align: center;
    font-weight: 700;
}

.cardboard .cardboard_body table tbody tr td:nth-child(3) span:before{
    content: '$';
}

.cardboard .cardboard_body table tbody tr td:nth-child(4) input{
    color: #75884E;
    text-align: center;
    font-weight: 700;
}

.cardboard .cardboard_body table tbody tr td:nth-child(4) span:before{
    content: '$';
}

.cardboard .cardboard_body table tbody tr td:nth-child(5),
.cardboard .cardboard_body table thead tr th:nth-child(5){
    width: 20%;
}

.cardboard .cardboard_body table .editable{
    background-color: #EEEEEE;
}

.cardboard .cardboard_body table .editable [contenteditable=true],
.cardboard .cardboard_body table .editable input{
    background-color: #FBFBFB;
    border: 1px solid #E5E5E5;
    font-size: 0.9375rem;
    padding: 6.5px 8.5px;
    display: block;
}

.cardboard .cardboard_body table input::-webkit-outer-spin-button,
.cardboard .cardboard_body table input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.cardboard .cardboard_body table .editable [contenteditable=true]:empty:not(:focus):before{
    content:attr(data-ph);
    color: #7A7A7A;
}

.cardboard .cardboard_footer{
    background-color: #EBEBEB;
    padding: 1rem 3.25rem;
}

.total-debt-form{
    display: flex;
    align-items: flex-end;
    justify-content: end;
    grid-gap: 10px;
}

.total-debt-form .field label{
    display: block;
    color: #000000;
    font-size: 0.6875rem;
    font-weight: 700;
    opacity: .66;
    margin-bottom: 6px;
}

.total-debt-form .field .total-debt{
    display: block;
    background-color: #AC080E;
    border: none;
    color: #FFF;
    font-size: 1.125rem;
    font-weight: 700;
    text-align: right;
    padding: 0.5rem;
    max-width: 11rem;
    min-width: 155px;
}

.total-debt-form .field .total-debt:before{
    content: '$';
}

.total-debt-form .field .total-minimum-monthly-payment{
    background-color: #75884E;
}

.target-debt-container{
    background-color: #000;
    color: #fff;
    display: flex;
    align-items: center;
    padding: 0.5rem 0 0.5rem 1rem;
    grid-gap: 1rem;
    position: relative;
}

.target-debt-container:after{
    content: '';
    position: absolute;
    top: 0;
    left: 100%;
    width: 3.25em;
    height: 100%;
    background-color: #000;
}

.target-debt-container img{
    width: 2rem;
    height: 2rem;
    object-fit: contain;
}

.target-debt-container .content span{
    font-size: 0.75rem;
}

.target-debt-container .content span.target-debt{
    font-size: 1.625rem;
    font-weight: 700;
    display: block;
}

.target-debt-container .content span.target-debt:before{
    content: '$'
}

.exclude-debt{
    background-color: #FFFFFF;
}

.exclude-debt tr td:nth-child(1),
.exclude-debt tr td:nth-child(1){
    width: 80%;
}

.exclude-debt tr td:nth-child(2),
.exclude-debt tr td:nth-child(2){
    width: 15%;
}

.exclude-debt tr td:nth-child(2):before{
    content: '$';
}

.exclude-debt tfoot tr td:nth-child(2):before{
    content: none
}

.exclude-debt tr td:nth-child(3),
.exclude-debt tr td:nth-child(3){
    width: 5%;
}

.exclude-debt tfoot{
    background-color: #C9CDCE;
}

.exclude-debt tfoot tr td{
    padding: 16px 8px;
    color: #0000009a;
    font-size: 0.75rem;
    font-weight: 600;
}

.exclude-debt .exclude{
    width: 1rem;
    height: 1rem;
    display: block;
    color: transparent;
    background-image: url(../images/exclude-on.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
}

.exclude-debt  tbody tr.inactive td{
    color: #959696 !important;
}

.exclude-debt  tbody tr.inactive td .exclude{
    background-image: url(../images/exclude-off.svg);
}

.one-time-payments{
    background-color: #FFF;
}

.one-time-payments tbody tr td,
.one-time-payments tfoot tr td{
    padding: 1.25em 1.4375em !important;
}

.one-time-payments tbody tr td:nth-child(1){
    width: 70% !important;
}

.one-time-payments tbody tr td:nth-child(2){
    width: 10% !important;
    color: #00838F !important;
}

.one-time-payments tbody tr td:nth-child(3){
    width: 20% !important;
}

.one-time-payments tfoot{
    background-color: #C9CDCE;
}

.one-time-payments tfoot .button.button-outline{
    border-color: #1D2A53;
    border-width: 2px;
    color: #013A68;
    font-size: 0.85em;
    padding: 0.8em 1.5em;
    background-color: #F7F7F7;
    text-transform: initial;
}

.one-time-payments .balance{
    text-align: center;
}

.one-time-payments .balance:after{
    content: none !important;
}

.one-time-payments .balance:before{
    content: '$';
}

.one-time-payments input{
    border: none;
    font-weight: 700;
    color: #000;
}

.one-time-payments input[type=date]{
    width: auto !important;
}

.one-time-payments tbody tr td{
    padding: 10px 5px !important;
}

.one-time-payments thead tr td:nth-child(2){
    text-align: center;
}

.total-minimum-monthly-payment{
    background-color: #00838F;
    color: #fff;
    display: block;
    padding: 5px 13px;
    font-size: 1.25rem;
    font-weight: 700;
    text-align: right;
}

.total-minimum-monthly-payment:before{
    content: '$';
}

.monthly-minimum-payments-container{
    background: #FFFFFF;
    border: 4px solid #EBEBEB;
    border-radius: 15px;
    padding: 2.75rem 2.0625rem 2.75rem 1.5rem;
    margin-top: 1.875rem;
    margin-bottom: 2.5625rem;
    display: flex;
    align-items: center;
    grid-gap: 5%;
}

.monthly-minimum-payments-container > .content{
    width: 75%;
}

.monthly-minimum-payments-container > div:not(.content){
    width: 20%;
    background-color: #F5D892;
    padding: 0.6875rem 1.375rem;
    text-align: center;
}

.monthly-minimum-payments-container h3{
    margin-top: 0;
    margin-bottom: 10px;
}

.monthly-minimum-payments-container p{
    margin-top: 0;
    margin-bottom: 0;
    font-size: 0.875rem;
    font-weight: 600;
}

.monthly-minimum-payments-container .monthly-minimum-payments{
    border: none;
    border-bottom: 1px solid #000000;
    width: 100%;
    min-width: 110px;
    font-size: 1.5rem;
    font-weight: 600;
    background-color: transparent;
    display: inline-block;
    width: inherit;
    text-align: center;
}

.monthly-minimum-payments-container .monthly-minimum-payments:before{
    content: '$';
}

.monthly-minimum-payments-container span:not(.monthly-minimum-payments){
    font-size: 0.875rem;
    font-weight: 600;
}

.card_plans{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 2.25rem;
}

.card_plans .card_plan{
    border: 1px solid #C8CCCE;
    display: flex;
    flex-direction: column;
}

.card_plans .card_plan .header{
    padding: 1.3125rem 1rem 1.5625rem;
    color: #FFFFFF;
    font-size: 1.25rem;
    font-weight: 700;
    text-align: center;
}

.card_plans .card_plan.minimum-payments-only .header{
    background-color: #B85C2B;
}

.card_plans .card_plan.minimum-payments-only .content p b{
    color: #B85C2B;
}

.card_plans .card_plan.avalanche-method .header{
    background-color: #75884E;
}

.card_plans .card_plan.avalanche-method .content p b{
    color: #75884E;
}

.card_plans .card_plan.snowball-method .header{
    background-color: #00838F;
}

.card_plans .card_plan.snowball-method .content p b{
    color: #00838F;
}

.card_plans .card_plan .content{
    background-color: #FFFFFF;
    padding: 0.8125rem 1.3125rem 0.9375rem;
}

.card_plans .card_plan .content p{
    margin-top: 0;
    margin-bottom: 0;
    font-size: 0.75rem;
}

.card_plans .card_plan .content p{
    font-weight: 700;
}

.card_plans .card_plan .content p:last-child{
    font-weight: 400;
    line-height: 1.5;
}

.card_plans .card_plan .content .would_pay{
    font-size: 1.625rem;
    font-weight: 700;
    margin-top: 1.125rem;
}

.card_plans .card_plan .content .save{
    font-size: 0.875rem;
    font-weight: 400;
    margin-top: 5px;
    margin-bottom: 8.5px;
    visibility: hidden;
}

.card_plans .card_plan .content .save span:last-child{
    font-weight: 700;
    margin-left: 5px;
    color: #FFC213;
}

.card_plans .card_plan .content .months{
    margin-top: 5px;
    margin-bottom: 6px;
}

.card_plans .card_plan .content .months span:first-child{
    font-size: 1.625rem;
    font-weight: 700;
}

.card_plans .card_plan .content .months-faster{
    margin-top: 5px;
    margin-bottom: 10px;
    font-size: 0.875rem;
    visibility: hidden;
}

.card_plans .card_plan .content .months-faster span:first-child{
    font-weight: 700;
    color: #FFC213;
}

.card_plans .card_plan.minimum-payments-only .content .would_pay,
.card_plans .card_plan.minimum-payments-only .content .months{
    color: #B85C2B;
}

.card_plans .card_plan.minimum-payments-only .content .save,
.card_plans .card_plan.minimum-payments-only .content .months-faster{
    visibility: hidden;
}

.card_plans .card_plan.avalanche-method .content .would_pay,
.card_plans .card_plan.avalanche-method .content .months{
    color: #75884E;
}

.card_plans .card_plan.snowball-method .content .would_pay,
.card_plans .card_plan.snowball-method .content .months{
    color: #00838F;
}

.card_plans .card_plan.minimum-payments-only .content .would_pay:before,
.card_plans .card_plan.avalanche-method .content .would_pay:before,
.card_plans .card_plan.snowball-method .content .would_pay:before{
    content: '$';
}

.card_plans .card_plan .footer{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.875rem;
    margin-top: auto;
    background-color: #C9CDCE;
}

.card_plans .card_plan .footer .button{
    border: none;
    font-size: 0.75rem;
    text-transform: inherit;
}

.card_plans .card_plan.minimum-payments-only .footer .button{
    background-color: #B85C2B;
}

.card_plans .card_plan.avalanche-method .footer .button{
    background-color: #75884E;
}

.card_plans .card_plan.snowball-method .footer .button{
    background-color: #00838F;
}

.repayment-plan .container > .col-10{
    width: 74%;
}

.repayment-plan .container > .col-2{
    width: 26%;
}

.repayment-plan .cardboard .cardboard_header{
    padding-right: 0;
}

.repayment-plan .target-debt-container{
    width: 100%;
}

.repayment-plan .target-debt-container:after{
    content: none;
}

.repayment-plan .cardboard .cardboard_body{
    padding: 0 0 0 3.25rem;
}

.repayment-plan .cardboard_header .button{
    background-color: #FFC213;
    border-radius: 14px;
    font-weight: 600;
    padding: 0.35rem 0.875rem;
    cursor: pointer;
    color: #000000;
    text-transform: initial;
}

.repayment-plan table tbody{
    background-color: #fff;
}

.repayment-plan .plan-content .content table tbody tr td{
    color: #013A68 !important;
}

.plan-content{
    width: 100%;
    margin: 0 auto;
    display: flex;
    position: relative;
}

.plan-content .content{
    width: 75%;
    padding-right: 2.875rem;
}

.plan-content .content p:first-child{
    color: #333333;
    margin-top: 0;
    margin-bottom: 1.25rem;
}

.plan-content .content table thead{
    background-color: #EEF0F0;
}

.plan-content .content table thead tr th{
    color: #000;
}

.plan-content .sidebar{
    width: 25%;
    background-color: #FFF;
    padding: 5px 1rem 1rem;
    margin-top: -1rem;
}

.plan-content .sidebar p:first-child{
    margin-top: 0;
    margin-bottom: 1.3125rem;
    font-size: 1rem;
}

.plan-content .sidebar p:first-child b{
    font-size: 1.25rem;
}

.plan-content .sidebar .debt-title{
    background-color: #1C2954;
    color: #fff;
    text-align: center;
    font-size: 1.3rem;
    padding: 10px;
    margin: 0 -1rem;
}

.plan-content .sidebar .requires{
    color: #6C6C6C;
    font-size: 1.1rem;
    line-height: 1.5;
}

.plan-content .sidebar .requires span{
    font-size: 1.3rem;
    font-weight: 700;
    color: #1C2954;
}

.plan-content .sidebar .requires span.balance:before{
    content: '$';
}

.plan-content .sidebar .saved-interest-costs{
    background-color: #F5D892;
    padding: 6px 12px 8px;
}

.plan-content .sidebar .saved-interest-costs p{
    margin-top: 0;
    margin-bottom: 0;
}

.plan-content .sidebar .saved-interest-costs p:first-child{
    margin-bottom: 5px;
}

.plan-content .sidebar .saved-interest-costs p b{
    font-size: 1.25rem;
    color: #000 !important;
}

.plan-content .saved-interest-costs-amount:before{
    content: '$'
}

.plan-content .sidebar .reminder{
    color: #515A5E;
    margin-left: 2rem;
    margin-top: 3rem;
    position: relative;
}

.plan-content .sidebar .reminder:before{
    content: '';
    position: absolute;
    left: -2rem;
    top: 0;
    width: 16px;
    height: 16px;
    background-image: url(../images/reminder-icon.svg);
    background-size: contain;
}

.plan-content .sidebar p:last-child{
    font-size: 0.9375rem;
    line-height: 1.4;
}

.plan-content .content table thead tr th:nth-child(1){
    width: 80%;
    text-align: left;
}

.plan-content .content table thead tr th:nth-child(2){
    width: 20%;
    color:#000 !important;
}

.plan-content .content table tbody tr td:nth-child(1){
    font-size: 1rem;
    font-weight: 400;
}

.plan-content .content table tbody tr td:nth-child(1){
    color: #00838F;
}

.plan-content .content table tfoot tr th:last-child span{
    font-size: 0.85rem;
    font-weight: 700;
}

.plan-content .content table tfoot tr th:last-child span.total{
    font-size: 1.25rem;
    background-color: #B85C2B;
    color: #fff;
    display: block;
    text-align: right;
    padding: 5px 13px;
    margin-top: 5px;
    text-align: center;
    font-weight: 700;
}

.plan-content .content table tfoot tr th:last-child span.total:before{
    content: '$'
}

.plan-content .buttons-container{
    margin-bottom: 1.3125rem;
}

.plan-content .buttons-container .button{
    border-radius: 30px;
    background-color: #515A5E;
    border: none;
    text-transform: initial;
    color: #fff;
}

/* Starting Screen */
#starting-screen .cardboard {
    background: #FFF;
}

#starting-screen .cardboard_body{
    max-width: 60.75rem;
    margin-left: auto;
    margin-right: auto;
    padding-top: 2.8125rem;
    padding-bottom: 2rem;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.7;
}

#starting-screen .logo-center{
    max-width: 22rem;
    margin-left: auto;
    margin-right: auto;
    display: block;
}

#starting-screen h3{
    color: #013A68;
    font-size: 35px;
    font-family: 'Raleway', sans-serif;
    font-weight: 800;
    text-align: center;
    margin-top: 4.1875rem;
    margin-bottom: 1.625rem;
}

#starting-screen h3 span{
    color: #00838F;
    font-weight: 700;
}

#starting-screen .buttons-container{
    margin-top: 4rem;
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
    grid-gap: 1.875rem;
}

#starting-screen .button.button-green,
.starting-screen.mobile .buttons-container .button{
    animation: pulse 2s infinite;
}

/* Repayment Strategy Set Up */
#repayment-strategy-set-up .cardboard_body{
    padding-top: 1.1875rem;
    padding-bottom: 2.125rem;
}

#repayment-strategy-set-up h3{
    color: #00838F;
    font-size: 1.25rem;
    font-weight: 700;
}

#repayment-strategy-set-up h3:first-child{
    margin-top: 0;
}

#repayment-strategy-set-up .exclude-debt tbody tr td,
#repayment-strategy-set-up .exclude-debt tfoot tr td{
    padding: 0.9375rem 1.5625rem;
}

#repayment-strategy-set-up .exclude-debt tbody tr td:nth-child(1){
    color: #013A68;
    padding-top: 15px;
    padding-bottom: 15px;
}

#repayment-strategy-set-up .exclude-debt tfoot tr td{
    padding: 0.625rem 1.0625rem;
}

#repayment-strategy-set-up .exclude-debt tfoot tr td:first-child{
    text-align: right;
    color: #000;
}

#repayment-strategy-set-up .buttons-container{
    margin-top: 2.125rem;
}

#repayment-strategy-set-up .buttons-container .button-outline{
    border-radius: 30px;
    background-color: #515A5E;
    color: #fff;
    border: none;
    text-transform: initial;
}

#repayment-strategy-set-up .buttons-container .button-green{
    background-color: #046D3B;
    color: #fff;
    border: none;
    text-transform: initial;
}

/* Repayment Plans */
#repayment-plans .buttons-container{
    margin-top: 1.4375rem;
}

#repayment-plans .buttons-container .button{
    border-radius: 30px;
    background-color: #515A5E;
    border: none;
    color: #fff;
    text-transform: initial;
}

/* Minimum Payments Only */
#minimum-payments-only .cardboard .cardboard_header .title{
    color: #B85C2B;
}

#minimum-payments-only .sidebar .debt-title{
    background-color: #B85C2B;
}

#minimum-payments-only .sidebar .requires span{
    color: #B85C2B;
}

#minimum-payments-only .plan-content .sidebar p:first-child b{
    color: #B85C2B;
}

#minimum-payments-only .cardboard .cardboard_body table tbody tr td:nth-child(2):before{
    content: '$';
}

#minimum-payments-only .cardboard .cardboard_body table tbody tr td:last-child{
    color: #B85C2B !important;
}

/* Avalanche Method */
#avalanche-method .cardboard .cardboard_header .title{
    color: #75884E;
}

#avalanche-method .sidebar .debt-title{
    background-color: #75884E;
}

#avalanche-method .plan-content .sidebar p:first-child b{
    color: #75884E;
}

#avalanche-method .sidebar .requires span{
    color: #75884E;
}

#avalanche-method .plan-content .sidebar{
    /* background-image: url(../images/avalanche.png); */
    background-size: 40% auto;
    background-repeat: no-repeat;
    background-position: left bottom;
}

#avalanche-method .plan-content .content table tfoot tr th:last-child span.total{
    background-color: #75884E;
}

#avalanche-method .cardboard .cardboard_body table tbody tr td:nth-child(1),
#avalanche-method .cardboard .cardboard_body table thead tr th:nth-child(1){
    width: 10%;
    text-align: center;
    font-weight: 700;
}

#avalanche-method .cardboard .cardboard_body table thead tr th:nth-child(1) span{
    background-color: #1C2954;
    border-radius: 15px;
    color: #fff;
    padding: 2px 6px;
}

#avalanche-method .cardboard .cardboard_body table tbody tr td:nth-child(2),
#avalanche-method .cardboard .cardboard_body table thead tr th:nth-child(2){
    width: 70%;
    text-align: left;
    color: #1C2954;
}

#avalanche-method .cardboard .cardboard_body table tbody tr:nth-child(1) td:nth-child(2):after,
#snowball-method .cardboard .cardboard_body table tbody tr:nth-child(1) td:nth-child(2):after{
    content: 'with Extra Payments';
    display: block;
    color: #1882B1;
    font-size: .85em;
}

#avalanche-method .cardboard .cardboard_body table tbody tr td:nth-child(3),
#avalanche-method .cardboard .cardboard_body table thead tr th:nth-child(3){
    width: 20%;
}

#avalanche-method .cardboard .cardboard_body table tbody tr td:nth-child(3):before{
    content: '$';
}

#avalanche-method .plan-content .content table tbody tr td:nth-child(1):after{
    content: '%';
}

#avalanche-method .cardboard .cardboard_body table tbody tr td:last-child{
    color: #75884E !important;
}

/* Snowball Method */
#snowball-method .cardboard .cardboard_header .title{
    color: #00838F;
}

#snowball-method .sidebar .debt-title{
    background-color: #00838F;
}

#snowball-method .plan-content .sidebar p:first-child b{
    color: #00838F;
}

#snowball-method .sidebar .requires span{
    color: #00838F;
}

#snowball-method .plan-content .sidebar{
    /* background-image: url(../images/snowball.png); */
    background-size: 40% auto;
    background-repeat: no-repeat;
    background-position: left bottom;
}

#snowball-method .plan-content .content table tfoot tr th:last-child span.total{
    background-color: #00838F;
}

#snowball-method .cardboard .cardboard_body table tbody tr td:nth-child(1),
#snowball-method .cardboard .cardboard_body table thead tr th:nth-child(1){
    width: 10%;
    text-align: center;
    font-weight: 700;
}

#snowball-method .cardboard .cardboard_body table thead tr th:nth-child(1) span{
    background-color: #013A68;
    border-radius: 15px;
    color: #fff;
    padding: 2px 6px;
}

#snowball-method .cardboard .cardboard_body table tbody tr td:nth-child(2),
#snowball-method .cardboard .cardboard_body table thead tr th:nth-child(2){
    width: 70%;
    text-align: left;
}

#snowball-method .cardboard .cardboard_body table tbody tr td:nth-child(3),
#snowball-method .cardboard .cardboard_body table thead tr th:nth-child(3){
    width: 20%;
}

#snowball-method .cardboard .cardboard_body table tbody tr td:nth-child(3):before{
    content: '$';
}

#snowball-method .plan-content .content table tbody tr td:nth-child(1):before{
    content: '$';
}

#snowball-method .cardboard .cardboard_body table tbody tr td:nth-child(2){
    color: #1C2954 !important;
}

#snowball-method .cardboard .cardboard_body table tbody tr td:last-child{
    color: #00838F !important;
}

@media(max-width:767px){
    body{
        background-color: #D2D2D2;
    }

    body section{
        display: none;
    }

    body section:first-child{
        display: none;
    }

    .container{
        flex-direction: column;
    }

    .container > .col-8,
    .container > .col-6,
    .container > .col-4{
        width: 100%;
    }

    section > .header .image-wedge{
        background-size: cover;
        margin-right: 2em;
    }

    section > .header .image-wedge img{
        max-width: 100%;
        width: 230px;
        height: 108px;
        object-fit: contain;
        margin-left: 33px;
    }

    section > .header .title{
        margin-left: 33px;
        margin-top: 8px;
    }

    section > .content{
        margin: 1.5rem 1.5rem 3.4375rem 1.5rem;
    }

    .cardboard .cardboard_header {
        padding: 1rem 12px;
    }

    .cardboard .cardboard_header .image{
        margin-left: -12px;
        padding-left: 1.25rem;
    }

    .cardboard .cardboard_header .image:before{
        width: 12px;
    }

    .cardboard .cardboard_body{
        padding: 12px;
    }

    section > .header .container > .col-6:last-child{
        justify-content: flex-start;
    }

    section .cardboard_header .container > .col-6:first-child{
        justify-content: space-between;
    }

    .cardboard .cardboard_header .title{
        margin: 0;
        font-size: 1.5rem;
    }

    .cardboard .cardboard_footer{
        padding: 1rem 12px 20px;
        border-top: 4px solid #D9D9D9;
    }

    .starting-screen.mobile{
        display: block;
    }

    .starting-screen.mobile .cardboard_body{
        padding: 2.5rem;
    }

    .starting-screen.mobile .cardboard_body > img{
        max-width: 128px;
        width: 100%;
        margin: auto;
        display: block;
    }

    .starting-screen.mobile .cardboard_body h3{
        color: #013A68;
        font-size: 25px;
        font-family: 'Raleway', sans-serif;
        font-weight: 800;
        text-align: center;
        margin-top: 4.1875rem;
        margin-bottom: 1.625rem;
    }

    .starting-screen.mobile .cardboard_body h3 span{
        color: #00838F;
        font-weight: 700;
    }

    .starting-screen.mobile .buttons-container{
        display: flex;
        flex-direction: column-reverse;
        align-items: center;
        gap: 16px;
        margin-top: 1.75rem;
    }
    
    .starting-screen.mobile .buttons-container .button{
        width: 100%;
        max-width: 180px;
        justify-content: center;
    }

    .debts.mobile .button.button-outline{
        margin-top: 1rem;
    }

    .total-debt-form{
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .total-debt-form .field input{
        max-width: 13rem;
    }

    .total-debt-form .field label{
        font-size: 0.875rem;
    }

    .total-debt-form .button.button-green{
        width: 100%;
        justify-content: center;
    }

    .cardboard_body .debt{
        border-top: 1px solid #00000010;
        border-bottom: 1px solid #00000010;
        background-color: #F9F9F9;
        margin: 0;
        padding: 17px 12px;
    }

    .cardboard_body .debt:nth-child(even){
        background-color: #FFFFFF;
    }

    .cardboard_body .debt .header{
        display: flex;
        justify-content: space-between;
    }

    .cardboard_body .debt .header .title{
        font-size: 17px;
        font-weight: 700;
        margin-bottom: 7px;
    }

    .cardboard_body .debt .header .edit{
        width: 24px;
        height: 24px;
        background-image: url(../images/pencil-square.svg);
        background-position: center;
        background-repeat: no-repeat;
        background-size: contain;
    }

    .cardboard_body .debt .content{
        display: flex;
        flex-wrap: wrap;
        flex-direction: row;
    }

    .cardboard_body .debt .content .interest{
        font-size: 14px;
        font-weight: 600;
        color: #3333336e;
        width: 100%;
        margin-bottom: 6px;
    }

    .cardboard_body .debt .content .interest span{
        font-size: 16px;
        font-weight: 700;
        color: #75884E;
        margin-left: 6px;
    }

    .cardboard_body .debt .content .interest span:after{
        content: '%';
    }

    .cardboard_body .debt .content .balance{
        font-size: 14px;
        font-weight: 600;
        color: #3333336e;
        width: 55%;
        margin-bottom: 6px;
        text-align: left;
    }

    .cardboard_body .debt .content .balance span,
    .cardboard_body .debt .content .balance input{
        font-size: 16px;
        font-weight: 700;
        color: #1C2954;
        margin-left: 6px;
        display: inline-block;
        width: inherit;
        border: none;
        background-color: transparent;
    }

    .cardboard_body .debt .content .balance span:before{
        content: '$';
    }

    .cardboard_body .debt .content .min{
        font-size: 14px;
        font-weight: 600;
        color: #3333336e;
        width: 45%;
        margin-bottom: 6px;
        text-align: right;
    }

    .cardboard_body .debt .content .min span,
    .cardboard_body .debt .content .min input{
        font-size: 16px;
        font-weight: 700;
        color: #00838F;
        margin-left: 6px;
        display: inline-block;
        width: inherit;
        border: none;
        background-color: transparent;
    }

    .cardboard_body .debt .content .min span:before{
        content: '$'
    }

    .cardboard .cardboard_body table.one-time-payments tbody tr td:nth-child(1),
    .cardboard .cardboard_body table.one-time-payments thead tr th:nth-child(1){
        width: 20% !important;
    }

    .cardboard .cardboard_body table.one-time-payments tbody tr td:nth-child(2),
    .cardboard .cardboard_body table.one-time-payments thead tr th:nth-child(2){
        width: 20% !important;
    }

    .modal-add-new-debt,
    .modal-edit-new-debt{
        padding: 0;
    }

    .modal-add-new-debt .overlay,
    .modal-edit-new-debt .overlay{
        background-color: #000000bb;
        height: 100%;
        min-height: 400px;
        padding: 14px;
        display: flex;
        align-items: center;
    }

    .modal-add-new-debt .overlay .content,
    .modal-edit-new-debt .overlay .content{
        background-color: #EEEEEE;
        padding: 26px 22px 41px;
        width: 100%;
    }

    .modal-add-new-debt .overlay .content .title,
    .modal-edit-new-debt .overlay .content .title{
        color: #333333;
        font-size: 24px;
        font-weight: 700;
        text-align: center;
        margin-bottom: 32px;
    }

    .modal-add-new-debt .overlay .content .field,
    .modal-edit-new-debt .overlay .content .field{
        background: #FBFBFB;
        border: 1px solid #E5E5E5;
        padding: 12px;
        margin-top: 16px;
    }

    .modal-add-new-debt .overlay .content .field label,
    .modal-edit-new-debt .overlay .content .field label{
        font-size: 12px;
        font-weight: 700;
        color: #333333;
        display: block;
        margin-bottom: 11px;
    }

    .modal-add-new-debt .overlay .content .field input,
    .modal-edit-new-debt .overlay .content .field input{
        width: 100%;
        display: inline-block;
        border: none;
        background-color: #FBFBFB;
        font-size: 16px;
    }

    .modal-add-new-debt .overlay .content .buttons,
    .modal-edit-new-debt .overlay .content .buttons{
        margin-top: 38px;
        display: flex;
        justify-content: space-between;
    }

    .modal-add-new-debt .overlay .content .buttons .button,
    .modal-edit-new-debt .overlay .content .buttons .button{
        border-radius: 0;
        width: 98px;
        height: 48px;
        font-size: 18px;
        text-align: center;
        justify-content: center;
        padding: 6px 12px;
    }

    .modal-edit-new-debt .overlay .content .buttons .button:first-child{
        background-color: #75884E;
    }

    .repayment-strategy-set-up.mobile{}

    .repayment-strategy-set-up.mobile > .content {
        margin: 1.5rem 0 3.4375rem 0;
    }

    .repayment-strategy-set-up.mobile .cardboard .cardboard_header .title{
        max-width: 150px;
        text-align: right;
    }

    .repayment-strategy-set-up.mobile .cardboard_body{
        padding: 16px;
    }

    .target-debt-container{
        padding: 10px 24px 12px;
        justify-content: space-between;
        align-items: flex-end;
        width: auto;
    }

    .target-debt-container:after{
        content: none;
    }

    .target-debt-container span{
        font-size: 14px;
    }

    .target-debt-container .target-debt{
        text-align: right;
        font-size: 22px;
        font-weight: 700;
    }

    .target-debt-container .target-debt:before{
        content: '$';
    }

    .repayment-strategy-set-up.mobile h3{
        color: #00838F;
        font-size: 16px;
        font-weight: 700;
    }

    .exclude-debt tr td{
        background-color: #F5F5F5;
    }

    .exclude-debt .balance{
        font-size: 14px !important;
    }

    .exclude-debt tr td:nth-child(1), .exclude-debt tr td:nth-child(1){
        font-size: 12px;
        font-weight: 700;
        color: #000000;
        width: 50%;
    }

    .exclude-debt .total{
        background-color: #1882B1;
        color: #FFFFFF;
        font-size: 18px;
        padding: 7px;
        display: block;
        text-align: center;
    }

    .exclude-debt .total:before{
        content: '$'
    }

    .monthly-minimum-payments-container .monthly-minimum-payments{
        width: auto;
    }

    .monthly-minimum-payments-container{
        flex-direction: column;
        padding: 16px 18px;
    }

    .monthly-minimum-payments-container p{
        font-size: 14px;
        font-weight: 600;
    }

    .monthly-minimum-payments-container > div:not(.content){
        margin-top: 15px;
        width: 90%;
        padding: 10px 10px 15px;
    }

    .monthly-minimum-payments-container input.monthly-minimum-payments{
        width: 150px;
    }

    .repayment-strategy-set-up .cardboard .cardboard_footer{
        background-color: #FFFFFF;
        border-top: none;
    }

    .repayment-strategy-set-up .cardboard .cardboard_footer .button{
        border-radius: 30px;
    }

    .repayment-strategy-set-up .cardboard .cardboard_footer .button.button-outline{
        background-color: #515A5E;
        color: #fff;
        text-transform: initial;
        border: none;
    }

    .repayment-strategy-set-up .cardboard .cardboard_footer .button.button-green{
        background-color: #046D3B;
        color: #fff;
        text-transform: initial;
        border: none;
    }

    .one-time-payments{
        margin-left: -16px;
        width: calc(100% + 32px) !important;
    }

    .one-time-payments thead tr td{
        padding: 14px 22px;
        color: #00000066;
    }

    .one-time-payments tbody tr td:nth-child(1){
        width: 33% !important;
    }

    .one-time-payments .balance{
        font-size: 15px !important;
    }

    .one-time-payments input[type=date]{
        width: 110px !important;
    }

    .one-time-payments input{
        width: 70px !important;
    }

    .cardboard .cardboard_body table .button{
        padding: 0;
        border: 0;
        font-size: 0.95rem;
    }

    .cardboard .cardboard_body table .button.delete:after,
    .cardboard .cardboard_body table .button.edit:after{
        content: none;
    }

    .cardboard .cardboard_body table tbody tr td:nth-child(2) span{
        font-size: 14px;
    }

    .cardboard .cardboard_body table tbody tr td:nth-child(3){
        padding: 3px !important;
    }

    .cardboard .cardboard_body table tfoot .button{
        border: 2px solid #1D2A53;
        padding: 8px 16px;
    }

    .card_plans{
        display: block;
        grid-template-columns: 100%;
    }

    .card_plans .swiper-button-next, .card_plans .swiper-rtl .swiper-button-prev{
        top: auto;
        bottom: 15px;
        width: 12px;
        height: 24px;
        transform: scale(.7);
        filter: grayscale(1);
    }

    .card_plans .swiper-button-prev, .card_plans  .swiper-rtl .swiper-button-next{
        top: auto;
        bottom: 15px;
        width: 12px;
        height: 24px;
        transform: scale(.7);
        filter: grayscale(1);
    }

    .plan .cardboard_body .header{
        background-color: #B85C2B;
        color: #fff;
        padding: 14px 20px;
        font-size: 17px;
    }

    .snowball-method.plan .cardboard_body .header{
        background-color: #00838F;
    }

    .avalanche-method.plan .cardboard_body .header{
        background-color: #75884E;
    }

    .plan .cardboard_body .header .title{
        font-size: 34px;
        font-weight: 500;
        font-family: 'Raleway', sans-serif;
    }

    .plan .cardboard_body .header .total{
        font-size: 19px;
        font-weight: 500;
        display: inline-block;
    }

    .plan .cardboard_body .header .total:before{
        content: '$';
    }

    .plan .cardboard_body .header .months{
        font-size: 21px;
        font-weight: 700;
        display: inline-block;
    }

    .plan .cardboard_body .saved{
        margin-top: 8px;
        padding: 6px 12px;
        background-color: #F5D892;
        font-size: 14px;
    }

    .plan .cardboard_body .saved .saved-interest,
    .plan .cardboard_body .saved .paid-months{
        display: inline-block;
        color: #000;
        font-size: 20px;
        font-weight: 700;
    }

    .plan .cardboard_body .saved .saved-interest:before{
        content: '$'
    }

    .plan .cardboard_body p{
        font-size: 14px;
    }

    .plan .cardboard_body .reminder{
        color: #515A5E;
        margin-left: 2rem;
        margin-top: 1.5rem;
        position: relative;
    }

    .plan .cardboard_body .reminder:before {
        content: '';
        position: absolute;
        left: -2rem;
        top: 0;
        width: 16px;
        height: 16px;
        background-image: url(../images/reminder-icon.svg);
        background-size: contain;
    }

    .plan .cardboard_body .current-debts{
        margin-bottom: 20px;
    }

    .plan .cardboard_body .current-debts thead{
        background-color: #C9CDCE;
        font-size: 12px;
        font-weight: 600;
    }

    .plan .cardboard_body .current-debts thead td{
        padding: 5px 6px;
    }

    .plan .cardboard_body .current-debts thead td:last-child{
        text-align: right;
    }

    .plan .cardboard_body table tbody tr td:nth-child(1){
        width: 50%;
        font-size: 16px;
    }

    .plan .cardboard_body table tbody tr td:nth-child(2){
        width: 50%;
        font-size: 16px;
        color: #00838F;
        text-align: right;
    }

    .minimum-payments-only.plan .cardboard_body table tbody tr td:nth-child(2):before{
        content: '$'
    }

    .plan .total_payments_this_month{
        background-color: #B85C2B;
        color: #fff;
        font-size: 14px;
        padding: 14px 22px;
        text-align: center;
    }

    .card_plans .card_plan .content p{
        font-size: 14px;
    }

    .repayment-plans.mobile > .content {
        margin: 1.5rem 0 3.4375rem 0;
    }

    .repayment-plans.mobile .card_plans .card_plan .content p:first-child{
        height: 20px;
    }

    .repayment-plans.mobile .button-outline{
        background-color: #515A5E;
        color: #fff;
        text-transform: initial;
        border: none;
        border-radius: 30px;
    }

    .snowball-method.plan .total_payments_this_month{
        background-color: #00838F;
    }

    .avalanche-method.plan .total_payments_this_month{
        background-color: #75884E;
    }
    
    .plan .cardboard .cardboard_header a{
        background-color: #FFC213;
        border-radius: 14px;
        color: #000000;
        text-transform: initial;
    }

    .plan .total_payments_this_month .total{
        font-size: 21px;
        font-weight: 700;
        display: inline-block;
    }

    .plan .total_payments_this_month .total:before{
        content: '$';
    }

    .plan .cardboard_footer .button{
        width: 100%;
        justify-content: center;
        border-radius: 30px;
        padding: 12px;
        background-color: #515A5E;
        color: #fff;
        text-transform: initial;
        border: none;
    }

    .plan.mobile .cardboard .cardboard_body table tbody tr td:nth-child(1),
    .plan.mobile .cardboard .cardboard_body table thead tr th:nth-child(1){
        width: 20%;
        text-align: center;
    }

    .plan.mobile.minimum-payments-only .cardboard .cardboard_body table tbody tr td:nth-child(1){
        width: 50%;
        text-align: left;
    }

    .plan.mobile .cardboard .cardboard_body table thead tr th:nth-child(1) span{
        text-align: center;
        display: inline-block;
        background-color: #1C2954;
        border-radius: 15px;
        color: #fff;
        padding: 2px 6px;
        font-size: 12px;
    }

    .plan.mobile.avalanche-method .cardboard .cardboard_body table tbody tr td:nth-child(1):after{
        content: '%'
    }

    .plan.mobile.snowball-method .cardboard .cardboard_body table tbody tr td:nth-child(1):before{
        content: '$'
    }

    .plan.mobile.avalanche-method .cardboard_body table tbody tr td:nth-child(2),
    .plan.mobile.snowball-method .cardboard_body table tbody tr td:nth-child(2){
        text-align: left;
        color:#192957;
    }

    .plan.mobile.avalanche-method .cardboard_body table tbody tr:nth-child(1) td:nth-child(2) b:after,
    .plan.mobile.snowball-method .cardboard_body table tbody tr:nth-child(1) td:nth-child(2) b:after{
        content: 'with Extra Payments';
        display: block;
        color: #1882B1;
        font-size: .85em;
    }

    .plan.mobile.avalanche-method .cardboard .cardboard_body table tbody tr td:nth-child(3),
    .plan.mobile.snowball-method .cardboard .cardboard_body table tbody tr td:nth-child(3){
        font-size: 16px;
        color: #1882B1;
    }

    .plan.mobile.avalanche-method .cardboard .cardboard_body table tbody tr td:nth-child(3):before,
    .plan.mobile.snowball-method .cardboard .cardboard_body table tbody tr td:nth-child(3):before{
        content: '$';
    }
}

/* Print Style */
@media print {
    #starting-screen,
    .starting-screen.mobile{
        display: none !important;
    }
}