﻿@import url('https://fonts.googleapis.com/css?family=Roboto');

@font-face {
    font-family: 'Glyphicons Halflings';
    src: url('../fonts/glyphicons-halflings-regular.eot');
    src: url('../fonts/glyphicons-halflings-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/glyphicons-halflings-regular.woff2') format('woff2'), url('../fonts/glyphicons-halflings-regular.woff') format('woff'), url('../fonts/glyphicons-halflings-regular.ttf') format('truetype'), url('../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular') format('svg');
}

.glyphicon {
    position: relative;
    top: 1px;
    display: inline-block;
    font-family: 'Glyphicons Halflings';
    font-style: normal;
    font-weight: normal;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.glyphicon-tasks:before {
    content: "\e137"
}

.glyphicon-user:before {
    content: "\e008"
}

html {
    box-sizing: border-box;
    height: 100%;
}

html, body {
    margin: 0;
    padding: 0;
    min-height: 100%;
}

*, *:before, *:after {
    box-sizing: inherit;
}

iframe {
    border-width: 0;
    display: none;
    width: 0;
    height: 0;
}

.login-wrapper-wide {
    /* -- mobile changes --*/
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    top: 3vh;
    border: 1px solid #ccc;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.2);
    /* -- end changes */
}

.form-wrapper {
    padding: 30px;
}

    .form-wrapper.signon {
        padding: 30px 30px 11px 30px;
    }

.logo-wrapper {
    background-color: #FFFFFF;
    padding-top: 30px;
    display: block;
}

.logo {
    background-repeat: no-repeat;
    max-width: 100%;
    display: block;
    margin: 0 auto;
}

.link-forgot-password {
    margin-top: 13px;
}

.ng-hide {
    display: none;
}

input {
    width: 100%;
    height: 34px;
    padding: 5px;
    font-size: 14px;
    outline: none;
    box-shadow: none;
}

    input[type=text]:focus, input[type=password]:focus {
        border: 1px solid #0091ea;
    }

    input[type=submit] {
        height: 34px;
        padding: 5px 10px;
        font-size: 14px;
        font-weight: normal;
        text-align: center;
        vertical-align: baseline;
        display: inline-block;
        border: none;
        cursor: pointer;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
    }

    input[type=radio], label.radio {
        width: 1.5em;
        height: 1.5em;
        vertical-align: middle;
    }

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

    .form-group:last-child {
        margin-bottom: 20px;
    }

a {
    display: inline-block;
    font-size: 12px;
    color: #0091ea;
    text-decoration: none;
}

    a:hover {
        color: #383838;
    }

    a[ng-if="model.passwordReminderUrl"], a.cancel {
        margin-top: 13px;
    }

.app-return-message {
    padding-top: 10px;
}

.post-logout-redirect-link {
    font-size: 18px;
}

.login-error {
    font-size: 12px;
    color: #ee2e24;
    margin-bottom: 10px;
}

.validation-summary-errors ul {
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 12px;
}

    .validation-summary-errors ul li {
        font-size: 12px;
    }

.external-providers {
    padding-top: 20px;
}

ul.button-list-inline {
    list-style: none;
    margin: 0;
    padding: 0;
}

    ul.button-list-inline li {
        appearance: button;
        -moz-appearance: button;
        -webkit-appearance: button;
        text-decoration: none;
        font: menu;
        color: ButtonText;
        display: inline-block;
        padding: 2px 8px;
    }


.new-customer-block {
    background-color: rgba(243,243,243,0.85);
    padding: 17px 30px;
}

    .new-customer-block p {
        font-size: 12px;
        text-align: center;
        color: #383838;
        margin: 0;
    }

.field-validation-error {
    color: #CC0000;
    font-size: 12px;
}

.ro-mask { /* overlays the background */
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0,0,0,0.3);
}

input[name=password], input[name=username] {
    border: 1px solid #ccc;
}

    input[name=password].ng-touched.ng-invalid,
    input[name=username].ng-touched.ng-invalid,
    input[name=Email].ng-touched.ng-invalid {
        border: 1px solid #d50000;
    }

input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0px 1000px white inset;
    background-color: #FFFFFF !important;
    border: 1px solid #ccc;
    /*-webkit-text-fill-color: white !important;*/
}

.login-error-message {
    /*box-shadow: 0 0 6px rgba(238, 46, 36, 0.8);*/
    /*background: rgba(255,255,255,0.9);*/
    padding: 30px;
    color: #ee2e24;
}

    .login-error-message h2 {
        text-align: center;
        margin-top: 0;
    }

    .login-error-message .request-id {
        margin: 10px 0;
    }

    .login-error-message a {
        text-decoration: underline;
    }

/* -- mobile changes --*/
/* == Larger Screens ==
   ==================== */
@media(min-height: 480px) {
    .login-wrapper {
        top: 15vh;
    }
}

/*@media(min-height: 768px) {
    .login-wrapper {
        top: 20vh;
    }
}*/

/*@media(min-height: 1025px) {
    .login-wrapper {
        width: 400px;
        margin: -150px 0 0 -200px;
        position: absolute;
        top: 50%;
        left: 50%;
    }
}*/


/* -- end changes --*/

.list-group {
    list-style: none;
    margin: 0;
    padding: 0;
}

.list-group-item {
    padding-bottom: .1em;
}

    input[type=checkbox], .list-group-item strong {
        width: 1.5em;
        height: 1.5em;
        vertical-align: middle;
    }

.panel-heading {
    padding:2px;
    font-size: 1.5em;
}
.consent-directions {
    padding-bottom: 1em;
}

.consent-description {
    padding-left: 2em;
}

.consent-remember {
    padding-top: .5em;
    padding-bottom: .5em;
}

.consent-section {
    background-color: rgba(255,255,255,0.85);
    padding-bottom: .5em;
}

.glyphicon-user:before {
    content: "\e008";
}

.glyphicon-tasks:before {
    content: "\e137";
}

button[type=submit] {
    padding: 5px 25px;
    height: 34px;
    font-size: 14px;
    font-weight: normal;
    text-align: center;
    vertical-align: baseline;
    display: inline-block;
    border: none;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.arrow {
    border: solid #fff;
    border-width: 0 3px 3px 0;
    display: inline-block;
    padding: 3px;
    font-size: 14px;
    font-weight: normal;
}

.up {
    transform: rotate(-135deg);
    -webkit-transform: rotate(-135deg);
}

.down {
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
}

.hide {
    display: none !important;
}