﻿/* __Project.css    Sections: COMMON, LOGIN  */

/*________________________________ COMMON ________________________________________*/

/* Remove tap highlight on iOS */
li, ul, span, div {
    -webkit-tap-highlight-color: rgba(0,0,0,0);
}

/* buttons on detail form, primarily in header */
/*.detailformbutton {
    padding-left: 9px;
    padding-right: 9px;
    margin-right:6px;
    height: 28px;
    line-height: 27px;
    color: #FFFFFF;
    background-color: #0094ff;
    border-radius: 2px;
    cursor: pointer;
    font-family: 'Segoe UI', Arial;
    font-size: 14px;
    display: inline-block;
    text-align: center;
    text-decoration: none;
}*/



/* Heading on most forms */
.ToolsHeader {
    /*height: 50px;*/
    height: 56px;
    padding-left: 12px;
    font-family: 'Segoe UI', Arial;
    font-weight: bold;
    font-size: 14pt;
}

/* Title on most forms */
.HeadingTitle {
    /*padding-top: 7px;*/
    padding-top: 10px;
}

.HeadingButtons {
    /* right aligned button container on many forms */
    display: inline-block;
    float: right;
    margin-right: 68px;
    margin-top: 8px;
    padding-top: 0px;
}

.modal-header, .modal-body, .modal-footer {
    /* Increase padding for all bootstrap dialogs */
    padding-left: 25px !important;
    padding-right: 25px !important;
}

/* Upload progress bar. displayed for all uploads */
#UploadProgressBar {
    position: absolute;
    font-family: 'Segoe UI Light', 'Segoe UI', Arial;
    font-size: 14px;
    color: #222222;
    padding: 10px;
    background-color: white;
    top: 50%;
    left: 50%;
    margin-top: -25px;
    margin-left: -150px;
    width: 300px;
    height: 50px;
    overflow: hidden;
}



.SessionTesting {
    background-color: yellow;
    position: absolute;
    bottom: 0px;
    right: 0px;
    padding: 20px;
    z-index: 1052;
    cursor: pointer
}

.busydiv {
    background-color: #ffffff;
    opacity: .9;
    width: 100%;
    height: 100vh;
    position: absolute;
    top: 0px;
    left: 0px;
    background-image: url(../_engine/images/loading.gif);
    background-repeat: no-repeat;
    background-position-x: center;
    background-position-y: center;
    text-align: center;
    vertical-align: middle;
    line-height: 100vh;
    font-family: 'Segoe UI Light', 'Segoe UI', Arial;
    z-index:99;
}

.dialogicon {
    background-repeat: no-repeat;
    background-size: 28px;
    width: 28px;
    height: 28px;
    display: inline-block;
}

.dialogicon_upgrade { background-image: url(../_engine/images/upgradeproject.png); }
.dialogicon_error { background-image: url(../_engine/images/error.png); }
.dialogicon_alert { background-image: url(../_engine/images/infoyellow.png); }

.BottomMsg {
    position: fixed;
    z-index: 999;
    left: 0px;
    bottom: 0px;
    /*min-height: 40px;*/
    overflow: hidden;
    display: inline-block;
    transition: all 1s;
    padding-left: 35px;
    padding-right: 10px;
    padding-top: 1px;
    padding-bottom: 4px;
    background-color: black;
    color: #bbbbbb;
    background-image: url(../_engine/images/error.png);
    background-size: 18px;
    background-repeat: no-repeat;
    background-position: 10px center;
    font-size: 14px;
    font-family: 'Segoe UI', Arial;
    border-top-right-radius: 13px;
}

    .BottomMsg .BottomMsgBtn {
        color:#888888;
        font-size:18px;
        cursor:pointer;
        display:inline-block;
        padding:3px;
        margin-left:10px;
    }

    .BottomMsg.HideBottomMsg {
        bottom: -80px;
        /*height: 0;*/
    }

/*#region _____________________________________ LOGIN _________________________________________*/
.ProfileMenu {
    padding: 10px;
    background-color: white;
    border-radius: 4px;
    border: 1px solid black;
    font-family: 'Segoe UI Light', 'Segoe UI', Arial;
    font-size: 16pt;
    color: #333333;
    position: absolute;
    top: 50px;
    right: 0px;
    z-index: 8;
    margin-top: 2px;
    margin-right: 2px;
}

.ProfileMenu_Details {
    background-repeat: no-repeat;
    background-size: 100px;
    padding-left: 110px;
    padding-right: 30px;
    height: 100px;
    white-space: nowrap;
}


.ProfileInfo {
    padding-left: 49px;
    padding-top: 0px;
    padding-bottom: 0px;
    padding-right: 0px;
    height: 49px;
    line-height: 49px;
    right: 0px;
    font-family: 'Segoe UI Light', 'Segoe UI', Arial;
    font-size: 12pt;
    outline: 0;
    background-repeat: no-repeat;
    background-size: 49px;
    cursor: pointer;
    position: fixed;
    z-index: 6;
    display: block;
}

    .ProfileInfo:hover {
        background-color: white;
    }


.ProfileName {
    padding-left: 10px;
    padding-right: 15px;
    cursor: pointer;
}


.ProfileMenu_Username {
    font-size: 11pt;
    color: #666666;
}

.ProfileMenu_Close {
    float: right;
    cursor: pointer;
    color: #00b3f6;
    font-size: 27pt;
    line-height: 26px;
}

    .ProfileMenu_Close:hover {
        color: #ffffff;
    }

/*#endregion*/