<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">
.display-none {
    display: none;
}

div#wrapper {
    overflow-x: hidden;
}

    div#wrapper.app-flag::after,
    div#wrapper.us-flag::after {
        content: "";
        background: url(../images/American_flag_map.png);
        background-repeat: no-repeat;
        background-position: center 20px;
        opacity: 0.1;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        position: absolute;
        z-index: -1;
    }


    div#wrapper.ca-flag::after {
        content: "";
        background: url(../images/Canada_flag_map.png);
        background-repeat: no-repeat;
        background-position: center 20px;
        opacity: 0.1;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        position: absolute;
        z-index: -1;
    }

    div#wrapper.au-flag::after {
        content: "";
        background: url(../images/Autralia_flag_map.png);
        background-repeat: no-repeat;
        background-position: center 20px;
        opacity: 0.1;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        position: absolute;
        z-index: -1;
    }

    div#wrapper.eu-flag::after {
        content: "";
        background: url(../images/Europe_flag_map.png);
        background-repeat: no-repeat;
        background-position: center 20px;
        opacity: 0.1;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        position: absolute;
        z-index: -1;
    }


.flags {
    position: absolute;
    top: 0;
    right: 0;
    margin: 20px 20px 0 0;
}

    .flags img {
        margin: 0 10px;
        width: 40px;
        height: 25px;
    }

/*#region 
* ========================================
 * LOGIN
 * ========================================
 */
.login {
    width: 400px;
    margin: auto;
    margin-top: 150px;
    background-color: rgba(255,255,255, .6) !important;
    border: 1px solid #d9d9d9;
    border-top: 5px solid #4d7496;
    border-radius: 5px;
    padding-top: 20px !important; 
}

    .login .box {
        /*background-color: #fff;*/
        width: 350px;
    }

        .login .box .content {
            padding: 30px;
            padding-top: 10px;
            padding-bottom: 15px;
        }

        .login .box form {
            padding: 0;
            margin: 0;
        }

        .login .box .form-title {
            text-align: center;
            font-weight: 300;
            margin-bottom: 25px;
        }

        .login .box .form-group {
            margin: 0;
            padding: 0;
            margin-bottom: 15px;
        }

        .login .box .form-actions {
            background-color: #fff;
            border-top: none;
            padding: 10px 0;
            margin: 0;
        }

        .login .box .input-icon {
            position: relative;
        }

            .login .box .input-icon input {
                border-left: 2px solid #4d7496;
            }

        .login .box .has-error .input-icon input {
            border-left-color: #b94a48;
        }

        .login .box .has-success .input-icon input {
            border-left-color: #468847;
        }

        .login .box .checkbox {
            margin-top: 7px;
        }

        .login .box .inner-box {
            border-top: 1px solid #c0c0c0;
        }

            .login .box .inner-box .content {
                padding: 12px 30px;
                text-align: center;
            }

            .login .box .inner-box .close {
                font-size: 12px;
                margin-top: -3px;
                margin-right: -20px;
            }

            .login .box .inner-box .hide-default {
                display: none;
            }

            .login .box .inner-box form {
                margin-top: 10px;
                margin-bottom: 10px;
            }

            .login .box .inner-box a + form {
                margin-top: 20px;
            }

            .login .box .inner-box .form-group {
                margin-bottom: 10px;
            }

            .login .box .inner-box .forgot-password-done {
                padding: 10px 0;
            }

                .login .box .inner-box .forgot-password-done .success-icon,
                .login .box .inner-box .forgot-password-done .danger-icon {
                    font-size: 24px;
                    padding-right: 5px;
                    padding-top: 0;
                }

                .login .box .inner-box .forgot-password-done .success-icon {
                    color: #94b86e;
                }

                .login .box .inner-box .forgot-password-done .danger-icon {
                    color: #e25856;
                }

                .login .box .inner-box .forgot-password-done span {
                    font-weight: 600;
                }


.confirm-email-result {
    margin-top: 20px;
    font-size: 1em;
    font-weight: normal;
}

.get-started {
    border-left: 1px solid #e5e5e5;
    margin-left: 20px;
    min-height: 300px;
    padding: 10px;
}

    .get-started h3 {
        text-transform: uppercase;
    }

    .get-started .check-marks li {
        list-style: none;
        line-height: 40px;
    }

    .get-started .check-marks.benefits li {
        font-size: 1.1em;
        list-style: none;
        line-height: 25px;
    }

    .get-started .check-marks li:before {
        font-family: 'FontAwesome';
        content: "\f046";
        margin-right: 10px;
        color: #497121;
    }
/*#endregion*/



/*#region 
* ========================================
 * VALIDATION
 * ========================================
 */
.field-validation-error {
    color: #a94442;
}

.field-validation-valid {
    display: none;
}

input.input-validation-error {
    border: 1px solid #a94442;
    background-color: #f2dede;
}

input[type="checkbox"].input-validation-error {
    border: 0 none;
}

.validation-summary-errors {
    color: #a94442;
}

.validation-summary-valid {
    display: none;
}
/*#endregion*/





.text-align-center,
.text-center {
    text-align: center !important;
}

.page-divider {
    margin: 10px 0;
    border-top: 1px solid #CFCFCF;
}
</pre></body></html>