/* 27/01 added Montserrat font and color variables */
@import url("https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700|Roboto:300,400,500,600,700|Montserrat:300,400,500,600,700");

:root {
    --dark-blue-color: #1E1A55;
    --lunar-blue-color: #4568F7;
    --blue-grey-neutral-color: #F1F2F9;
}

html {
    display: flex;
    min-height: 100%;
    height: auto;
}

body {
    font-family: Poppins, Helvetica, "sans-serif";
    background-color: var(--blue-grey-neutral-color);
    position: relative;
    margin: 0;
    overflow: auto;
    display: flex;
    flex: 1 1 100%
}

.button {
    border-radius: 3px;
    width: 150px;
    height: 40px;
    border-style: none;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
}

.button:hover {
    cursor: pointer;
}

button.secondary {
    background-color: transparent;
    border: 2px solid var(--lunar-blue-color);
    color: var(--lunar-blue-color);
    margin-right: 40px;
}

button.primary {
    background-color: var(--lunar-blue-color);
    color: #fff;
}

.circle-background {
    background-color: #fff;
    border-radius: 50%;
    width: 1000px;
    max-width: 55%;
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    position: absolute;
    z-index: -1;
}

#centerFin {
    visibility: hidden;
}

.button {
    padding: 0;
    display: inline-block;
    height: 40px;
    line-height: 40px;
    text-decoration: none;
    box-sizing: content-box;
}

.button.long-btn {
    width: auto;
    min-width: 150px;
    padding: 0 48px;
}

.button.secondary {
    background-color: transparent;
    border: 2px solid #4568F7;
    color: #4568F7;
    margin-right: 40px;
}

.button.primary {
    background-color: #4568F7;
    color: #fff;
}

/** Main template container styles START **/
.container {
    display: flex;
    flex-direction: column;
    flex: 1 1 100%

}

.app-main {
    display: flex;
    flex-direction: column;
    flex: 1 1 100%;
    padding: 20px;
}

.app-header, .app-footer {
    background-color: var(--dark-blue-color);
    display: flex;
    flex: 0 0 115px;
    color: #fff;
}

.app-header {
    justify-content: space-between;
    align-items: center;
    font-weight: 500;
    font-size: 14px;
}

.app-header {
    justify-content: space-between;
    align-items: center;
    font-weight: 500;
    font-size: 14px;
}

.app-header > *:first-child {
    padding-left: 140px;
}

.app-header > *:last-child {
    padding-right: 140px;
}

.app-footer {
    justify-content: flex-end;
    font-weight: 600;
    font-size: 10px;
}

.app-footer .icon {
    display: flex;
    align-items: center;
    padding-right: 140px;
}

.app-footer .icon .text {
    padding-right: 8px;
}

/* copy pasted styles are used just as an example */
/* todo please, change height and min-height property styles to flex: 1 1 100%; to child page wrapper */
.wrapper {
    display: flex;
    /* height: auto;
    min-height: 100%; */
    flex: 1 1 100%;
    align-items: center;
    color: #1E1A55;
}

.welcome {
    align-items: center;
    display: flex;
    flex-direction: column;
    flex: 1 1 60%;
    padding: 0 180px;
}

.welcome .text {
    color: #333333;
    margin: 28px 0;
}

.welcome .text p:first-child, p:last-child {
    margin-top: 0;
}

.welcome > .header {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.welcome > .header > h1, h2 {
    font-weight: 600;
    margin: 0;
}

.welcome > .header > h1 {
    flex: 1 1 75px;
    font-size: 50px;
}

.welcome > .header > h2 {
    flex: 1 1 45px;
    font-size: 30px;
}

.welcome > .button-wrapper {
    display: flex;
    width: 100%;
}

.welcome .footer {
    margin-top: 40px;
    font-size: 12px;
}

.wizard {
    display: flex;
    flex: 1 1 40%;
    justify-content: center;
    flex-direction: column;
}

.wizard .header {
    font-weight: 600;
    width: 125px;
    text-align: center;
    margin-bottom: 40px;
}

.wizard .list {
    display: flex;
    flex-direction: column;
    margin-left: 30px;
}

.wizard .list .step {
    display: flex;
    align-items: center;
}

.step .circle {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    width: 60px;
    border-radius: 30px;
    margin-right: 20px;
}

.step .number {
    border: 2px solid #1E1A55;
    font-weight: 500;
}

.step .text {
    font-size: 15px;
}

.step .icon {
    background-color: #1FDE9C;
    border: 2px solid #1FDE9C;
}

.line {
    height: 60px;
    width: 60px;
    margin-left: 31px; /* width/2 + border/2 */
    border-left: 2px dashed #1E1A55;
}
/** Main template container styles END **/

.question-link {
    color: #fff;
    text-decoration: none;
}

.question-link:hover {
    text-decoration: underline;
}

.loader {
    border: 16px solid #f3f3f3; /* Light grey */
    border-top: 16px solid #00AEEF; /* Blue */
    border-radius: 50%;
    width: 120px;
    height: 120px;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
a
