﻿
html {
    /*font-family: 'Roboto', serif;*/
    font-family: "Segoe UI";
}
body {
}
* {
    box-sizing: border-box;
}

body {
    /*font-family: Helvetica;*/
    background: #eee;
    -webkit-font-smoothing: antialiased;
}

hgroup {
    text-align: center;
    margin-top: 4em;
}

h1, h3 {
    font-weight: 300;
}

h1 {
    color: #636363;
}

h3 {
    color: #4a89dc;
}

.k-loading-mask .k-loading-image {
    background-image: url('../../Content/Images/spinner.gif');
    background-color: #0000003d;
}

.k-group .k-loading-mask .k-loading-image {
    background-image: url('../../Content/Images/spinner_small.gif');
    background-color: #0000003d;
}

.k-loading-mask {
    z-index: 100000;
}

form, .login-loader {
    width: 380px;
    margin: 4em auto;
    margin-top: 3em;
    padding: 3em 2em 1.2em 2em;
    background: #fafafa;
    border: 1px solid #ebebeb;
    box-shadow: rgba(0,0,0,0.14902) 0px 1px 1px 0px,rgba(0,0,0,0.09804) 0px 1px 2px 0px;
    border-radius: 8px;
    text-align: center;
}
form.winauth-login-details {
        padding: 2em;
    }
.helper {
    display: inline-block;
    height: 100%;
    vertical-align: middle;
}
.loader {
    vertical-align: middle;

}
.group {
    position: relative;
    margin-bottom: 35px;
}

input {
    font-size: 18px;
    padding: 10px 10px 10px 5px;
    -webkit-appearance: none;
    display: block;
    background: #fafafa;
    color: #636363;
    width: 100%;
    border: none;
    border-radius: 0;
    border-bottom: 1px solid #757575;
}

    input:focus {
        outline: none;
    }


/* Label */

label {
    color: #999;
    font-size: 18px;
    font-weight: normal;
    position: absolute;
    pointer-events: none;
    left: 5px;
    top: 10px;
    transition: all 0.2s ease;
}


/* active */

input:focus ~ label, input.used ~ label {
    top: -20px;
    transform: scale(.75);
    left: -10px;
    /* font-size: 14px; */
    color: #4a89dc;
}


/* Underline */

.bar {
    position: relative;
    display: block;
    width: 100%;
}

    .bar:before, .bar:after {
        content: '';
        height: 2px;
        width: 0;
        bottom: 1px;
        position: absolute;
        background: #4a89dc;
        transition: all 0.2s ease;
    }

    .bar:before {
        left: 50%;
    }

    .bar:after {
        right: 50%;
    }


/* active */

input:focus ~ .bar:before, input:focus ~ .bar:after {
    width: 50%;
}


/* Highlight */

.highlight {
    position: absolute;
    height: 60%;
    width: 100px;
    top: 25%;
    left: 0;
    pointer-events: none;
    opacity: 0.5;
}


/* active */

input:focus ~ .highlight {
    animation: inputHighlighter 0.3s ease;
}


/* Animations */

@keyframes inputHighlighter {
    from {
        background: #4a89dc;
    }

    to {
        width: 0;
        background: transparent;
    }
}


/* Button */

.button {
    position: relative;
    display: inline-block;
    padding: 12px 24px;
    margin: .3em 0 0 0;
    width: 100%;
    vertical-align: middle;
    color: #fff;
    font-size: 16px;
    line-height: 20px;
    -webkit-font-smoothing: antialiased;
    text-align: center;
    letter-spacing: 1px;
    background: transparent;
    border: 0;
    border-bottom: 2px solid #3160B6;
    cursor: pointer;
    transition: all 0.15s ease;
    border-radius: 8px;
    font-family: "Segoe UI", regular;
    font-weight: 600;
    font-size: 15px;
}

    .button:focus {
        outline: 0;
    }


/* Button modifiers */

.buttonBlue {
    background: #4a89dc;
    text-shadow: 1px 1px 0 rgba(39, 110, 204, .5);
    margin-bottom: 10px;
}
.btn-microsoft {
    background: #2f2f2f;
    text-shadow: 1px 1px 0 rgb(47, 47, 47);
    border-bottom: 2px solid #2f2f2f;
}
.btn-openidconnect {
    background: #2f2f2f;
    text-shadow: 1px 1px 0 rgb(47, 47, 47);
    border-bottom: 2px solid #2f2f2f;
}
.microsoft-logo, .google-logo {
    float: left;
}
.btn-windows {
    background: #4a89dc;
}
.btn-google {
    font-family: 'Roboto-medium', sans-serif;
    background: #fff;
    border-bottom: none;
    color: rgba(0, 0, 0, 0.54);
    box-shadow: 0 2px 4px 0 rgba(0,0,0,.25);
    padding: 0;
    line-height: 46px;
}
.google-image {
    max-height: 26px;
    vertical-align: middle!important;
    margin: 0 -100px 0 -60px;
}
.google-logo {
    padding-left: 10px;
}
    .buttonBlue:hover {
        background: #357bd8;
    }
.logo {
    vertical-align: bottom;
}

/* Ripples container */

.ripples {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: transparent;
}


/* Ripples circle */

.ripplesCircle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
}

.ripples.is-active .ripplesCircle {
    animation: ripples .4s ease-in;
}


/* Ripples animation */

@keyframes ripples {
    0% {
        opacity: 0;
    }

    25% {
        opacity: 1;
    }

    100% {
        width: 200%;
        padding-bottom: 200%;
        opacity: 0;
    }
}

footer {
    text-align: center;
}

footer p {
    color: #888;
    font-size: 13px;
    letter-spacing: .4px;
}

footer a {
    color: #4a89dc;
    text-decoration: none;
    transition: all .2s ease;
}

footer a:hover {
    color: #666;
    text-decoration: underline;
}

footer img {
    width: 80px;
    transition: all .2s ease;
}

footer img:hover {
    opacity: .83;
}

footer img:focus, footer a:focus {
    outline: none;
}

.notification-template-wrap {
    display: flex;
    padding: 4px;
}
.notification-template-wrap .k-icon {
    font-size: 22px;
    padding-top: 4px;
}
.notification-template-wrap .notif-header {
    padding: 0 2px;
    font-weight: 500;
    font-size: 20px;
}
.notification-template-wrap .notif-message {
    padding: 0 4px;
    line-height: 20px;
    max-height: 80px;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-word;
}
.kendo-notification-container {
    max-width: 30%;
    left: unset !important;
    right: 10px;
}
.kendo-notification-container .k-notification{
    width: 100%;
}
.kendo-notification-container .k-notification .k-notification-wrap {
    white-space: normal;
}
.notification-container {
    padding: 10px;
}
.notification-content{
    padding: 10px;
    border-radius: 10px;
}
.notification-see-more {
    float: right;
    cursor: pointer;
    font-size: 13px;
}
.notification-see-more-div {
    height: 20px;
}
.notification-content.Information, .notification-content.Information .ac-adaptivecard{
    background-color: #bbdefb!important;
}
.notification-content.Warning, .notification-content.Warning .ac-adaptivecard {
    background-color: #fdefba!important;
}
.notification-content.Error, .notification-content.Error .ac-adaptivecard {
    background-color: #ffcdd2!important;
}
.notification-content .ac-adaptivecard {
    padding: 0 !important;
}
.notification-icon {
    margin-top: -4px;
}
.login-logo {
    display: block;
    max-height: 80px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 10vh;
}

#progress-bar {
    width: 100%;
    height: 30px;
    margin-bottom: 12px;
}

.k-notification-error {
    background-color: #ffcdd2;
    color: #ff3448;
    border-color: #ffcdd2;
}
.disabled {
    background-color: rgb(235, 235, 228)!important;
    pointer-events:none;

}