
.complete-color[data-v-16643795] {
		color: var(--accent-color);
}
.denied-color[data-v-16643795] {
		color: var(--error-color);
}
.procesing-color[data-v-16643795] {
		color: var(--processing-color);
}

.loan-summary[data-v-2a8c3dc1] {
		display: grid;
		grid-template-columns: 2.5em 1fr;
		grid-template-rows: 1fr 1.25em 1em;
		row-gap: 0.25em;
		column-gap: 0.5em;
		grid-template-areas:
			"icon title"
			"icon amount"
			"status status";
		padding: 1em;
    /* border: 1px solid var(--border-color);
    border-radius: 4px; */
}
.loan-icon[data-v-2a8c3dc1] {
		background: var(--accent-color);
		grid-area: icon;
		display: flex;
		align-items: center;
		justify-content: center;
		border-radius: 5px;
}
.loan-icon[data-v-2a8c3dc1] svg {
		height: auto;
		width: 2.5em;
}
.loan-title[data-v-2a8c3dc1] {
		grid-area: title;
		font-weight: bold;
		width: fit-content;
		white-space: nowrap;
}
.loan-amount[data-v-2a8c3dc1] {
		font-size: 1.2em;
		grid-area: amount;
		color: var(--accent-color);
		font-weight: bold;
}
.loan-status[data-v-2a8c3dc1] {
		grid-area: status;
}
@media all and (max-width: 450px) {
.loan-summary[data-v-2a8c3dc1] {
			padding: 0.5em;
}
}

.headerButtonText {
    color: var(--accent-color);
    margin: 0;
}
@media all and (max-width: 420px) {
.header_buttons_style {
      font-size: 0.75em;
      width: 48px;
      margin: 0 1px;
}
.headerButtonText {
      display: none;
}
}

.overlayDarkBG[data-v-ef61185e] {
		background-color: rgba(0, 0, 0, 0.5);
		position: fixed;
		top: 0;
		bottom: 0;
		left: 0;
		right: 0;
		z-index: 5;
		display: flex;
		justify-content: center;
		align-items: center;
}
.overlayContentBG[data-v-ef61185e] {
		position: relative;
		overflow-y: auto;
		max-width: 90vw;
		max-height: 90vh;
		padding: 1em;
		transition: 0.5s cubic-bezier(0.694, 0.0482, 0.335, 1);
		background-color: white;
}
.overlayHeader[data-v-ef61185e] {
		font-weight: 800;
		color: var(--accent-color);
		font-size: 1.8em;
		border-bottom: 1px solid var(--border-color);
		padding-bottom: 0.2em;
		margin-bottom: 0;
}
.overlayBody[data-v-ef61185e] {
		padding: 1em;
}
.overlayContentBG[data-v-ef61185e] .button-footer {
		display: flex;
		justify-content: center;
		margin-top: 2em;
}
.overlayContentBG[data-v-ef61185e] .button-footer button {
		cursor: pointer;
		margin: 0 0.5em;
		background: white;
		border: 1px solid var(--accent-color);
		color: var(--accent-color);
		padding: 0.5em;
		width: 7.5em;
		transition: all .2s ease-in-out;
}
.overlayContentBG[data-v-ef61185e] .button-footer button:hover {
		background-color: var(--accent-color);
		color: white;
}
.overlayContentBG[data-v-ef61185e] .button-footer button:focus {
		box-shadow: 0 0 0 4px rgba(var(--accent-color-rgb), 0.5);
		border-radius: 4px;
}
.v-enter-active[data-v-ef61185e] {
		transition: 0.6s;
}
.v-enter-active .overlayContentBG[data-v-ef61185e] {
		overflow-y: hidden
}
.v-leave-active[data-v-ef61185e] {
		transition: 0.3s;
}
.v-enter-active .overlaySlideWrapper[data-v-ef61185e] {
		transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.15) 0.2s;
}
.v-enter-from[data-v-ef61185e],
	.v-leave-to[data-v-ef61185e] {
		opacity: 0;
}
.v-enter-to[data-v-ef61185e],
	.v-leave-from[data-v-ef61185e] {
		opacity: 1;
}
.v-enter-from .overlaySlideWrapper[data-v-ef61185e] {
		transform: translateY(110%);
}
.v-enter-to .overlaySlideWrapper[data-v-ef61185e] {
		transform: translateY(0%);
}
@media all and (max-width: 560px) {
.overlayContentBG[data-v-ef61185e] {
			width: 90%;
}
.overlayBody[data-v-ef61185e] {
			padding: 0;
}
}
@media all and (max-width: 480px) {
.form-add-new-income[data-v-ef61185e] .form-overlay .input-wrapper:nth-child(3) {
			grid-area: 1 / span 2 !important;
}
.form-add-new-income[data-v-ef61185e] .form-overlay .placeholder {
			display: none;
}
}

.overlayContentBG[data-v-42ccc4ee] {
		max-width: 35em;
}

.circular[data-v-7e4c0aee] {
  animation: rotate-7e4c0aee 1s linear infinite;
  width: 50px;
  height: 50px;
  position: absolute;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.path[data-v-7e4c0aee] {
  stroke-dasharray: 1,200;
  stroke-dashoffset: 0;
  animation:
   dash-7e4c0aee 1.5s ease-in-out infinite,
   color 6s ease-in-out infinite;
  stroke-linecap: round;
  stroke: #77ad1d;
}
@keyframes rotate-7e4c0aee {
100% {
    transform: rotate(360deg);
}
}
@keyframes dash-7e4c0aee {
0% {
    stroke-dasharray: 1,200;
    stroke-dashoffset: 0;
}
50% {
    stroke-dasharray: 89,200;
    stroke-dashoffset: -35;
}
100% {
    stroke-dasharray: 89,200;
    stroke-dashoffset: -124;
}
}

.overlayBody .circular {
	position: relative;
}
.spinnerText[data-v-73adbd8e] {
	max-width: 35em;
	text-align: center;
	margin-bottom: 0;
}

.newAppCheckbox {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1.75em;
    height: 1.75em;
    border: 1px solid var(--light-text-color);
    border-radius: 0.5em;
    margin: 0.25em 0.5em 0.25em 0;
    cursor: pointer;
}
.newAppCheckbox svg {
    color: white;
    display: none;
    animation: zoom 0.25;
}
.newAppInput {
    display: none;
}
.newAppInput:checked + label {
    background: var(--accent-color);
    border-color: var(--accent-color)
}
.newAppInput:checked + label > svg {
    display: block;
}
.newAppInputsContainer {
    display: flex;
    align-items: center;
}
.newAppSelectbox {
    width: 100%;
    box-sizing: border-box;
    color: var(--text-color);
    border: 1px solid var(--border-color);
    padding: 0.7em 0.9em;
}
.newAppDivider {
    height: 1em;
    margin: 1em 0;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.newAppLine {
    height: 1px;
    width: 85%;
    background-color: var(--border-color);
}
.newAppDividerText {
    font-weight: bold;
    background-color: white;
    padding: .5em;
    position: absolute;
    transform: translateX(-50%);
    left: 50%;
}
.accent-btn {
    margin: 0 1em;
}
@keyframes zoom {
from {
      transform: scale(0)
}
to {
      transform: scale(1)
}
}

.header_container[data-v-5e8f09c5] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 2;
    height: 4em;
    display: flex;
    align-items: center;
    background-color: white;
    border-bottom: 1px solid var(--border-color);
}
.fccu_icon_container[data-v-5e8f09c5] {
    width: 15em;
    height: 4em;
    display: flex;
    justify-content: center;
    align-items: center;
    border-right: 1px solid var(--border-color)
}
.fccu_icon[data-v-5e8f09c5] {
    width: 2.5em;
    height: 2.5em;
    fill: var(--text-color);
}
.loan-wrapper[data-v-5e8f09c5] {
    display: flex;
    align-items: center;
}
.loan-wrapper[data-v-5e8f09c5] .loan-icon {
    background: transparent;
    color: var(--accent-color)
}
.loan-wrapper[data-v-5e8f09c5] .loan-summary {
    font-weight: bold;
    padding: 0 2em;
    border-right: 1px solid var(--border-color)
}
.loan-wrapper[data-v-5e8f09c5] .loan-summary:last-child {
    border-right: none;
}
.loan-wrapper[data-v-5e8f09c5] .loan-title {
    color: var(--light-text-color);
    font-weight: bold;
}
.main_title[data-v-5e8f09c5] {
    font-size: 1.65em;
    font-weight: 900;
    margin-left: .7em;
}
.header_buttons_style[data-v-5e8f09c5] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 5.5em;
    height: 4em;
    background: none;
    border: none;
    color: var(--accent-color);
    cursor: pointer;
    position: relative;
    transition: all .2s ease-in-out;
    white-space: nowrap;
}
.header_buttons_style[data-v-5e8f09c5] svg {
    font-size: 1.6em;
    transition: all .2s ease-in-out;
}
.header_buttons_style[data-v-5e8f09c5]:hover svg {
    transform: scale(1.2);
}
.header_buttons_container[data-v-5e8f09c5] {
    margin-left: auto;
    display: flex;
}
.header_home_icon[data-v-5e8f09c5] {
    width: 1.5em;
    height: 1em;
}
.header_logout_icon[data-v-5e8f09c5] {
    width: 1.5em;
    height: .9em;
}
a[data-v-5e8f09c5] {
    text-decoration: none;
}
.redIt[data-v-5e8f09c5] {
    color: var(--error-color);
}
.unreadAlertsNum[data-v-5e8f09c5] {
    position: absolute;
    height: 1em;
    width: 1em;
    bottom: 43%;
    right: 28%;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    padding: .8em;
    font-size: .7em;
    background: var(--error-color);
}

/* Animation for loan summary entering and leaving after selected */
.v-enter-active[data-v-5e8f09c5],
  .v-leave-active[data-v-5e8f09c5],
  .v-move[data-v-5e8f09c5] {
    transition: 0.5s;
}
.v-enter-from[data-v-5e8f09c5],
  .v-leave-to[data-v-5e8f09c5] {
    opacity: 0
}
.v-enter-to[data-v-5e8f09c5],
  .v-leave-from[data-v-5e8f09c5] {
    opacity: 1
}
.headerButtonText[data-v-5e8f09c5] {
    color: var(--accent-color);
    margin: 0;
}
@media all and (max-width: 941px) {
.main_title[data-v-5e8f09c5] {
      display: none;
}
}
@media all and (max-width: 750px) {
.fccu_icon_container[data-v-5e8f09c5] {
      width: 4em;
}
.fccu_icon[data-v-5e8f09c5] {
      display: none;
}
.main_title[data-v-5e8f09c5] {
      font-size: 1.2em;
      margin-left: 12px;
}
}
@media all and (max-width: 590px) {
.main_title[data-v-5e8f09c5] {
      font-size: 1em;
}
.header_buttons_style[data-v-5e8f09c5] {
      font-size: 0.9em;
      width: 3.6em;
      margin: 0 4px;
}
}
@media all and (max-width: 420px) {
.header_buttons_style[data-v-5e8f09c5] {
      font-size: 0.75em;
      width: 48px;
      margin: 0 1px;
}
.headerButtonText[data-v-5e8f09c5] {
      display: none;
}
}
@media all and (max-width: 360px) {
.header_buttons_style[data-v-5e8f09c5] {
      width: 35px;
}
}
@media (max-width: 250px) {
.header_container[data-v-5e8f09c5] {
      height: 8em;
      flex-direction: column;
}
.fccu_icon_container[data-v-5e8f09c5] {
      border-right: none;
}
.header_buttons_container[data-v-5e8f09c5] {
      border-top: 1px solid var(--border-color);
      width: 100%;
      height: 4em;
      align-items: center;
      justify-content: center;
}
}

.sideBar_container[data-v-df3c4914] {
    height: 100%;
    background: white;
    position: relative;
    z-index: 3
}
.openSideBar[data-v-df3c4914] {
    position: fixed;
    display: none;
    top: 1em;
    left: .3em;
    z-index: 3;
    margin: 0;
    border: none;
    padding: 1px 6px;
    border-radius: 4px;
    transition: transform 0.5s;
    background: none;
}
.openSideBar[data-v-df3c4914]:before,
  .openSideBar[data-v-df3c4914]:after {
    content: "";
    display: block;
    height: 0.25em;
    width: 2em;
    margin: 0.5em;
    background: var(--light-text-color);
    border-radius: 3px;
    transition: transform 0.5s;
}
.closeIcon.openSideBar[data-v-df3c4914]:before{
    transform: rotate(45deg) translateY(0.5em)
}
.closeIcon.openSideBar[data-v-df3c4914]:after{
    transform: rotate(-45deg) translateY(-0.5em)
}
.sideBar-slide-wrapper[data-v-df3c4914] {
    position: fixed;
    top: 4em;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 10em;
    height: 100%;
    border-right: 1px solid var(--border-color);
    transition: transform 0.5s;
    background: white;
}
.sideBarOpen.sideBar-slide-wrapper[data-v-df3c4914] {
    transform: translateX(0)
}
.sideBar_home[data-v-df3c4914] {
    width: 100%;
    padding-top: 0;
}
.homeSVG[data-v-df3c4914] {
    width: 3em;
    height: 3em;
}
.appSVG[data-v-df3c4914] {
    width: 2.1em;
    height: 2.1em;
    color: var(--accent-color);
}
.appSVG[data-v-df3c4914] svg {
    height:100%;
}
.left_bar_button_style[data-v-df3c4914] {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 1.5em 0em;
    background: none;
    border: none;
    font-weight: bold;
    color: var(--accent-color);
    cursor: pointer;
    text-decoration: none;
}
.left_bar_button_style svg[data-v-df3c4914] {
    margin-top: .1em;
}
.left_bar_icon_style[data-v-df3c4914] {
    font-size: 2.5em;
}
.alertsWrapper[data-v-df3c4914],
  .left_bar_button_style[data-v-df3c4914] {
    position: relative
}
.unreadAlertsNum[data-v-df3c4914],
  .fa-check-circle[data-v-df3c4914] {
    position: absolute;
    height: 1.5em;
    width: 1.5em;
}
.fa-check-circle[data-v-df3c4914] {
    top:50%;
    right:1em;
    background: white;
}
.unreadAlertsNum[data-v-df3c4914] {
    bottom: 19%;
    right: 31%;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    background: var(--error-color);
}
.subStepSelected[data-v-df3c4914] svg {
     color: white;
}
.subStepSelected[data-v-df3c4914] {
    color: white;
    background: var(--accent-color);
}
.subStepSelected .fa-check-circle[data-v-df3c4914] {
    background:var(--accent-color);
}
.appSVG[data-v-df3c4914] .user-plus {
    height:2.1em;
}
.nextStep[data-v-df3c4914] {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 4em;
}
.nextStep .line[data-v-df3c4914] {
    width: 75%;
    height: 1px;
    background: var(--border-color);
    margin-bottom: 2em;
}
.lightText[data-v-df3c4914] {
    font-weight: bold;
    color: var(--light-text-color);
}

  /* add this back when ability to jump big steps returns */
  /* .accentText {
    margin-top: 0.5em;
    color: var(--accent-color);
    cursor: pointer;
  }

  .accentText:hover {
    font-weight: bold;
  } */
.accentText[data-v-df3c4914] {
    margin-top: 0.5em;
    color: var(--accent-color);
}
.homeLink[data-v-df3c4914] {
    text-decoration: none;
    color: var(--text-color);
    font-weight: bold;
    background: none;
    border: none;
}
.redIt[data-v-df3c4914] {
    color: var(--error-color);
}
@media all and (max-width: 750px) {
.sideBar_home[data-v-df3c4914] {
      padding-top: 3em;
}
}
@media all and (max-width: 510px) {
.sideBar-slide-wrapper[data-v-df3c4914] {
      height: calc(100vh - 4em);
      overflow-y: auto;
}
.nextStep[data-v-df3c4914] {
      margin-top: 1em;
}
}
@media (max-width: 250px) {
.openSideBar[data-v-df3c4914] {
      top: 8em;
}
.sideBar-slide-wrapper[data-v-df3c4914] {
      top: 8em;
      height: calc(100vh - 8em);
}
.sideBar_home[data-v-df3c4914] {
      padding-top: 2.5em;
}
.left_bar_button_style[data-v-df3c4914] {
      padding: 1em 0em;
}
}

.status[data-v-67975473] {
		height: 2em;
		width: 2em;
		border-radius: 50%;
		background: white;
		border: 2px solid var(--border-color);
		display: flex;
		align-items: center;
		justify-content: center;
		color: white;
		transition: transform 0.25s;
}
.stepNumStyle[data-v-67975473] {
    font-weight: bold;
    opacity: .5;
}
.status[data-v-67975473] .fa-play {
		height: 0.85em;
}
.status.complete[data-v-67975473] {
		background: var(--accent-color);
		border-color: var(--accent-color);
}
.showPulse[data-v-67975473] {
		box-shadow: 0 0 0 rgba(119,173,29, 0.4);
		animation: pulse-67975473 1.5s infinite;
}
@-webkit-keyframes pulse-67975473 {
0% {
			-webkit-box-shadow: 0 0 0 0 rgba(119,173,29, 0.4);
}
70% {
				-webkit-box-shadow: 0 0 0 20px rgba(119,173,29, 0);
}
100% {
				-webkit-box-shadow: 0 0 0 0 rgba(119,173,29, 0);
}
}
@keyframes pulse-67975473 {
0% {
			-moz-box-shadow: 0 0 0 0 rgba(119,173,29, 0.4);
			box-shadow: 0 0 0 0 rgba(119,173,29, 0.4);
}
70% {
				-moz-box-shadow: 0 0 0 20px rgba(119,173,29, 0);
				box-shadow: 0 0 0 20px rgba(119,173,29, 0);
}
100% {
				-moz-box-shadow: 0 0 0 0 rgba(119,173,29, 0);
				box-shadow: 0 0 0 0 rgba(119,173,29, 0);
}
}

.subStepItem {
    display: flex;
    align-items: center;
    padding: .5em 0 .5em 3.5em;
}
.subStepStatusIcon {
    height: 1em;
    width: 1em;
    margin-right: 1em;
}
.subStepValidIcon {
    fill: var(--accent-color);
}
.subStepInvalidIcon {
    fill: var(--error-color);
}
.subStepInvalidTitle {
    color: var(--error-color);
}
.subStepValidTitle {
    color: var(--accent-color);
}
.currentArrow {
    position: absolute;
    right: 1em;
    animation: shakeX 1.5s infinite;
}
.boldIt {
    font-weight: bold;
}
@keyframes shakeX {
0%, to {
      transform: translateZ(0);
      transform: scale3d(.75, 1.25, 1);
}
50% {
      transform: translate3d(10px, 0, 0);
}
}

.newNav-stepItem[data-v-1840e3fc] {
    display: flex;
    align-items: center;
    padding: .8em 0em .8em 1em;
}
.newNav-stepName[data-v-1840e3fc] {
    margin-left: .8em;
}
.newNav-bigStepIcon[data-v-1840e3fc] {
    font-size: .875em;
}
.newNav-statusComplete[data-v-1840e3fc], .newNav-statusNotStarted[data-v-1840e3fc] {
    opacity: .5;
    /* font-weight: bold; */
}
.dashedLine[data-v-1840e3fc] {
    width: 80%;
    height: 2em;
    margin-left: 1em;
}
.newNav-selected[data-v-1840e3fc] {
}
.docsLeftText[data-v-1840e3fc] {
    font-size: .8em;
    margin-left: 4em;
    margin-top: -1em;
    color: var(--error-color);
}
.noDocsLeftText[data-v-1840e3fc] {
    font-size: .8em;
    margin-left: 4em;
    margin-top: -1em;
}
.newNav-substep[data-v-1840e3fc] {
    transition: all .3s ease-in-out;
}
.newNav-substep[data-v-1840e3fc]:hover {
    background-color: rgb(223, 223, 223);
}
.boldIt[data-v-1840e3fc] {
    font-weight: bold;
}
.expander[data-v-1840e3fc] {
    max-height: 8em;
    overflow: hidden;
}
.expandList-move[data-v-1840e3fc], .expandList-enter-active[data-v-1840e3fc], .expandList-leave-active[data-v-1840e3fc] {
    transition: all .5s ease;
    /* max-height: 3em; */
}
.expandList-enter-from[data-v-1840e3fc], .expandList-leave-to[data-v-1840e3fc] {
    opacity: 0;
    transform: translateX(30px);
    max-height: 0em;
}

  /* .expandList-leave-active {
    position: absolute;
  } */

.overlayContentBG[data-v-e4b38c46] {
	max-width: 35em;
}

.overlayContentBG[data-v-1511a856] {
		max-width: 35em;
}
.errorCode[data-v-1511a856] {
		/* text-align:right; */
		color: var(--light-text-color);
}

.bottomButtonsContainer[data-v-a52ddf2a] {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 4em 0;
}
.bottomButtonStyle[data-v-a52ddf2a] {
    width: 8em;
    color: var(--accent-color);
    /* margin: 0 9em 4em 9em; */
    padding: .5em 0em;
    background: none;
    border: 1px solid var(--accent-color);
    cursor: pointer;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    transition: all .2s ease-in-out;
}
.bottomButtonStyle[data-v-a52ddf2a]:hover {
    background-color: var(--accent-color);
    color: white;
}
.bottomButtonStyle[data-v-a52ddf2a] svg {
    /* font-size: 2em; */
    width: 1.2em;
    height: 1.2em;
}
.noClick[data-v-a52ddf2a] {
    pointer-events: none;
}
.submitStyle[data-v-a52ddf2a] {
    box-shadow: 0 0 0 rgba(119,173,29, 0.4);
    animation: pulse-a52ddf2a 1.5s infinite;
}
.disabledSubmit[data-v-a52ddf2a] {
    background-color: white;
    color: var(--accent-color);
    opacity: .5;
    pointer-events: none;
}
.disabledSubmit[data-v-a52ddf2a]:hover {
    background-color: white;
    color: var(--accent-color);
    cursor: not-allowed;
}
@-webkit-keyframes pulse-a52ddf2a {
0% {
      -webkit-box-shadow: 0 0 0 0 rgba(119,173,29, 0.4);
}
70% {
        -webkit-box-shadow: 0 0 0 20px rgba(119,173,29, 0);
}
100% {
        -webkit-box-shadow: 0 0 0 0 rgba(119,173,29, 0);
}
}
@keyframes pulse-a52ddf2a {
0% {
      -moz-box-shadow: 0 0 0 0 rgba(119,173,29, 0.4);
      box-shadow: 0 0 0 0 rgba(119,173,29, 0.4);
}
70% {
        -moz-box-shadow: 0 0 0 20px rgba(119,173,29, 0);
        box-shadow: 0 0 0 20px rgba(119,173,29, 0);
}
100% {
        -moz-box-shadow: 0 0 0 0 rgba(119,173,29, 0);
        box-shadow: 0 0 0 0 rgba(119,173,29, 0);
}
}

.sidBarContainer[data-v-c776d360] {
    height: 100%;
    background: white;
    position: relative;
    z-index: 3;
}
.openSideBar[data-v-c776d360] {
    position: fixed;
    display: none;
    top: 1em;
    left: .3em;
    z-index: 3;
    margin: 0;
    border: none;
    padding: 1px 6px;
    border-radius: 4px;
    transition: transform 0.5s;
    background: none;
}
.openSideBar[data-v-c776d360]:before,
  .openSideBar[data-v-c776d360]:after {
    content: "";
    display: block;
    height: 0.25em;
    width: 2em;
    margin: 0.5em;
    background: var(--light-text-color);
    border-radius: 3px;
    transition: transform 0.5s;
}
.closeIcon.openSideBar[data-v-c776d360]:before{
    transform: rotate(45deg) translateY(0.5em)
}
.closeIcon.openSideBar[data-v-c776d360]:after{
    transform: rotate(-45deg) translateY(-0.5em)
}
.newNav-slide-wrapper[data-v-c776d360] {
    position: fixed;
    top: 4em;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: left;
    width: 15em;
    height: 100%;
    padding-top: 2em;
    border-right: 1px solid var(--border-color);
    transition: transform 0.5s;
    background: white;
    z-index: 5;
}
.sideBarOpen.newNav-slide-wrapper[data-v-c776d360] {
    transform: translateX(0);
}
.newNav-stepContainer[data-v-c776d360] {
    cursor: pointer;
    transition: transform .3s ease, background .3s ease;
}
.newNav-stepContainer[data-v-c776d360]:hover {
    /* transform: scale(1.05); */
    background: #f6f4f5;
}
.noStepsBlurb[data-v-c776d360] {
    text-align: center;
}



.overlayBody .circular {
		position: relative;
}
.boldButton[data-v-bf7f0cf8] {
		position: relative;
		transition: all 0.1s ease-in;
		margin: 0 0.5em;
		padding: 8px;
		border: var(--accent-color) 1px solid;
		background: var(--accent-color);
		font-weight: 600;
		color: #ffffff;
}
.lightButton[data-v-bf7f0cf8] {
		position: relative;
		transition: all 0.1s ease-in;
		margin: 0 0.5em;
		padding: 8px;
		border: var(--accent-color) 1px solid;
		background: #ffffff;
		font-weight: 600;
		color: var(--accent-color);
}

.overlayBody .circular {
    position: relative;
}
.kickText[data-v-0796fe50] {
    max-width: 35em;
    text-align: center;
}
.countDownBar[data-v-0796fe50] {
    position: absolute;
    top: 0;
    left: 0;
    height: 0.5rem;
    background-color: var(--accent-color);
    animation: shrinkingBar-0796fe50 5s linear;
    animation-delay: 0.75s;
}
@keyframes shrinkingBar-0796fe50 {
from {
      width: 100%;
}
to {
      width: 0%;
}
}

  /* FONTS */
@font-face {
    font-family: 'Nunito';
    src: url('/online_applications/assets/NunitoSans-Regular.13ad6417.ttf');
}
@font-face {
    font-family: 'Nunito';
    src: url('/online_applications/assets/NunitoSans-Bold.c571ae34.ttf');
    font-weight: bold;
}
@font-face {
    font-family: 'Nunito';
    src: url('/online_applications/assets/NunitoSans-ExtraBold.542d0323.ttf');
    font-weight: 800;
}
@font-face {
    font-family: 'Nunito';
    src: url('/online_applications/assets/NunitoSans-Light.29fb8b96.ttf');
    font-weight: 300;
}
#app, #overlays, input, select, button {
    font-family: 'Nunito', Helvetica, Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 1em;
}
* {
    box-sizing: border-box;
}
body {
    margin: 0;
}
:root {
    --accent-color-rgb: 119, 173, 29;

    --accent-color: rgb(var(--accent-color-rgb));
    --text-color: #4d4d4d;
    --light-text-color: #808080;
    --border-color: #cccccc;
    --error-color: #d5141f;
    --processing-color: #fbb03b;
    --incomplete: #808080;
    --theme-color: #77ad1d;


    /* Breakpoints for reference only */
    --breakpoint-xs: 300px;
    --breakpoint-sm: 490px;
    --breakpoint-md: 780px;
    --breakpoint-lg: 1000px;
    --breakpoint-xl: 1200px;


    --disableBG-color: #ebebeb;
}
h1, h2, h3, p, input, select, label, div {
    color: var(--text-color);
}
.contentWrapper {
    margin-left: 15em;
    margin-top: 4em;
}
button {
    cursor: pointer;
}
input:disabled, button:disabled {
    cursor: not-allowed;
    background-color: var(--disableBG-color);
}
.accent-btn {
    width: 8em;
    color: var(--prime-color);
    background: white;
    border: 1px solid var(--prime-color);
    padding: 0.5em 0;
    transition: all 0.2s;
}
.accent-btn:hover {
    background: var(--prime-color);
    color: white;
}
.newAppInfoButtons {
    margin-top: 1em;
    display: flex;
    justify-content: center;
    align-items: center;
}
.newAppInfoButtons button {
    margin: 0 1em;
}
.hide-visually {
    display: inline-block;
    height: 0;
    overflow: hidden;
}
.hide-aria {
    display: inline-block;
    height: 0;
    display: none;
}
@media screen and (max-width: 750px) {
.newNav-slide-wrapper {
      transform: translateX(-100%)
}
.contentWrapper {
      margin-left:0;
}
.openSideBar {
      display: block !important;
}
}
.page-fade-enter-active{
    transition: 0.25s
}
.page-fade-enter-from{
    opacity: 0;
}
.page-fade-enter-to{
    opacity: 1;
}

