﻿
/* == Notes: =============================================================== */
/* This style sheet is to be included in the outer page of the site. It is   */
/* used to create the main UI includeing the windows, tabs & popups          */
/* ========================================================================= */


/* ================== */
/* Document Structure */
/* ================== */

html, body {
    width: 100%;
    height: 100%;
    margin: 0px;
    padding: 0px;
    overflow: hidden;
    background-color :#FFFFFF;
}
#pageBackgorund {
    width: 100%;
    height: 100%;

    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;

    -moz-transition: opacity 5s;
    -webkit-transition: opacity 5s;
    -o-transition: opacity 5s;
    transition: opacity 5s;

    opacity: 0;
}


/* ======== */
/* Intro JS */
/* ======== */

.introjs-tooltip {
    font-size: 12px; 
    font-family: Roboto, Arial, Helvetica; 
    color: #333333;
}

/* =========== */
/* UI elements */
/* =========== */

.UiDefaultText {
    font-size: 14px; 
    font-family: Roboto, Arial, Helvetica; 
    color: #383838;
}

.UiDefaultText INPUT {
    border-radius: 3px;
    -moz-border-radius: 3px;
    color: #1c478e;
    padding: 2px;
    border: solid #8ca6cc 1px;
    margin: 0px;
}

.UiButton {

    margin: 0px;
    padding: 4px 7px 4px 7px;
    border-radius: 4px;
    -moz-border-radius: 4px;
    text-shadow: 0 1px 0 rgba(0,0,0,0.2);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.2);
    border: solid #2e6da4 1px;
    background-color: #337ab7;
    min-width: 50px;

    font-family: Roboto, Arial, Helvetica;
    color: #FFFFFF;
    font-size: 16px;
}

.UiButton:hover {
    background-color: #4285bf;
    cursor: pointer;
}

.UiButton:active {
	border: 1px solid #006699;
	background-color: #337ab7;
    box-shadow: none;
}

.UiButton:focus {
	outline: none;
	border: 1px solid #006699;
}

.UiButton:disabled {
	color: #CCCCCC !important;
}

.UiButton:disabled:hover, .UiButton:disabled:active {
	
	box-shadow: none !important;
}


.UiAlertText {
    font-size: 14px;
    font-family: Roboto, Arial, Helvetica;
    color: #383838;
}

.UiAlertText INPUT {
    border-radius: 3px;
    -moz-border-radius: 3px;
    color: #1c478e;
    padding: 2px;
    border: solid #8ca6cc 1px;
    margin: 0px;
}

.UiUnselectable {
    -webkit-user-select: none;  /* Chrome all / Safari all */
    -moz-user-select: none;     /* Firefox all */
    -ms-user-select: none;      /* IE 10+ */
    user-select: none;          /* Likely future */
}

.UiHyperlink {
    color: #1c478e;
    text-decoration: none;
}
.UiHyperlink:hover {
    text-decoration: underline;
}

/* =============== */
/* Layout Elements */
/* =============== */

.LoginBox {
    width: 350px; 
    display:block; 
    margin-left:auto; 
    margin-right:auto
}
.LoginBox INPUT {
    border: none !important;
    font-size: 14px !important;
    margin-left: 10px !important;
    width: 300px !important;
    outline: none !important;
    background-color: transparent !important;
}
.LoginBox .ModernTextBox {
    padding-bottom: 5px;
    border-bottom: 1px solid #6e85ab;
}
.AccountChooserExtensionIcon {
    border: 1px solid #8ca6cc;
    border-radius: 500px;
    background: #708aaf;
}

/* Make sure Chrome autofill doesnt make the fields yellow */
/* Maybe one day they will fix the bug */
input:-webkit-autofill {
    background-color: #FFFFFF !important;
    color: #1c478e !important;
}

.logoAreaProfile 
{
    color: #999999; 
    text-decoration:none;
    padding: 1px 3px 1px 3px;
}
.logoAreaProfile:hover 
{
    color: #FFFFFF;
    background-color: #999999;
    -webkit-border-radius: 4px; 
    -moz-border-radius: 4px; 
    border-radius: 4px; 
}
.Logo 
{
    vertical-align: middle; 
    height: 35px; 
    margin-left:2px; 
    margin-top:10px
}
.profilePicture 
{
    display: inline-block;
    margin: 5px 0px 5px 0px; 
    border-radius: 100px;
    border: 1px solid #708aaf;
    background: #708aaf;
}

.UiButtonBar {
    text-align: center;
    padding-top: 10px;
    padding-bottom: 10px;
    bottom: 0px;
    position: fixed;
    left: 0px;
    width: 100%;
    border-top: 1px solid #CCCCCC;
    background-color: #F3F3F3;
}

.UiNavigationBubble { 
    background-color: red;
    border: 2px solid #FFFFFF;
    border-radius: 50px;
    font-size: 11px;
    display: none;
    float: right;
    width: 15px;
    height: 15px;
    padding: 0px;
    margin-right: 10px;
    margin-top: 5px;
    line-height: 15px;
    text-align: center;
    text-shadow: none;
    box-shadow: 1px 1px 1px 1px rgba(0, 0, 0, 0.25);
}