﻿/*#region original */
body {
    background-color: antiquewhite;
}

.divPCAResultTemplate {
    display: none;
    visibility: hidden;
}

.trOwnedStockLineTemplate,
.trLineTemplate,
.trStockTransactionLineTemplate {
    display: none;
    visibility: hidden;
}

.trOwnedStockLine,
.trStockTransactionLine,
.trLine {
    width: 100%;
    overflow-x: scroll;
    overflow-y: visible;
    margin-left: 5px;
}

    .trOwnedStockLine div,
    .trStockTransactionLine div,
    .trLine div {
        display: inline-block;
    }
.trSplitLine{
    background-color: orange;
    color:navy;
}
.divSymbol {
    font-weight: bold;
    color: purple;
    text-decoration: underline;
}

.Removed {
    /*DO NOT SHOW this area and do not include it in the spacing*/
    display: none;
    visibility: hidden;
}

.Highlight {
    background-color: yellow;
}

.Edit {
    border: outset;
    width: 20px;
    height: 20px;
    background-image: url(/images/Edit.jpg) no-repeat center center;
}

.New {
    border: outset;
    width: 20px;
    height: 20px;
    background: url(/images/New.png) no-repeat center center;
}

.InitValues {
    flex-grow: 1;
    flex-shrink: 1;
    text-align: left;
    background-color: azure;
}

input.Symbol {
    width: 45px;
}

input.Cash {
    width: 55px;
}

input.Date {
    width: 85px;
}

.title {
    font-size: 3rem;
}

.PCAResult {
    width: 100%;
    text-wrap: none;
    /*display: inline-block;*/
}

    .PCAResult > div {
        padding-right: 4px;
        margin-right: 1px;
        border-radius: 2px;
        float: left;
    }

        .PCAResult > div:nth-child(even) {
        }


.LeftText {
    text-align: left;
}

.RightText {
    text-align: right;
}

tr.RightTR td, tr.RightTR th {
    text-align: right;
}

tr.CenterTR td {
    text-align: center;
}

.CenterText {
    font-weight: bold;
    text-align: center;
}

.Center {
    align-content: center;
}
.NoWrap{
    white-space:nowrap;
}
.FillObject {
    width: 100%;
    white-space: nowrap;
}

.BoldText {
    font-weight: bold;
}

.TradeLineHightlight {
    background-color: greenyellow;
}
.StockButton{
    /*width: 75%;*/
    text-align:center;
}
.PCAButton{
    margin-top: 5px;
    top: 5px;
    width: 110px;
}
/* XOMISSE START CSS FOR BUTTON  */
/*, .btnToggleTrades*/
.ShowAsButton {
    display: inline-block;
    background-color: lightgray;
    border-radius: 4px;
    border: 2px double #cccccc;
    color: black;
    text-align: center;
    padding: 4px;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    cursor: pointer;
    margin: 2px;
}

    .ShowAsButton:hover, .btnToggleTrades:hover {
        /*background-color: #fff;*/ /* adds a background hover colour to the button */
        /*color: #333;*/ /* changes the text colour on hover */
    }
/* XOMISSE END CSS FOR BUTTON */

.trLine {
    padding-top: 6px;
}
.PCAFoundValues {

}
.AreaHeaderBar, .TransactionAreaHeaderBar, .TransactionAreaHeaderBarButtons {
    background-color: mediumpurple;
    color: white;
    width: 100%;
    text-align: center;
}
.divPCAActualResult, .divPCASetupArea {
    padding: 4px;
    box-sizing: border-box;
    background: #fff;
    border-radius: 2px;
    margin: 3px;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
}
/*#endregion */
/*#region Table */
/*FROM http://jsbin.com/nayifepaxo/1/edit?html, output*/
.ScrollTableOuter,
.ScrollDataTableOuter {
    overflow: auto;
    white-space: nowrap;
}
    .ScrollTableOuter table,
    .ScrollDataTableOuter table {
        /*width: 100%;*/
        table-layout: fixed;
        border-collapse: collapse;
        border-spacing: 0;
        overflow-x: scroll;
        overflow-y: hidden;
        white-space: nowrap;
        display: table;
    }


.ScrollDataTableOuter {
    width: 100%;
    background: white;
    box-shadow: -13px 0px 15px 6px rgba(239, 239, 239, 0.76) inset;
    max-height: 200px;
}
        .ScrollDataTableOuter table {
            width: 100%;
        }



.ScrollDataTableOuter thead th {
    box-shadow: 0px 3px 3px 0px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    background: white;
}
.ScrollTableOuter td, .ScrollTableOuter th {
    border: 1px solid #000;
    display: table-cell;
    white-space: nowrap;
    text-align: left;
}
.ScrollDataTableOuter td, .ScrollDataTableOuter th {
    /*border: 1px solid #000;*/
    border: none;
    padding: .4em .4em; /*.5em 1em;*/
    display: table-cell;
    white-space: nowrap;
}
.ScrollDataTableOuter th {
    text-align: center;
}

.ScrollDataTableOuter tbody tr td:first-child {
    /* need to do the ellipsis overflow manually to keep the column box-shadow hack */
    background: white;
}

.ScrollDataTableOuter tr td:first-child:after, .ScrollDataTableOuter tr th:first-child::after {
    box-shadow: 15px 0 15px -15px rgba(0, 0, 0, 0.05) inset;
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: -15px;
    width: 15px;
}

.ScrollDataTableOuter td:first-child, .ScrollDataTableOuter th:first-child {
    position: sticky;
    left: 0;
    z-index: 1;
}


/*#endregion */
/*#region Box sizes */
.FixedBoxShort {
    width: 35px;
}

.FixedBoxMid {
    width: 65px;
}
.FixedBoxDate {
    width: 85px;
}
.FixedBox {
    width: 75px;
}

.FixedBoxWide {
    width: 125px;
}
/*#endregion */


/*#region https://www.w3schools.com/w3css/4/w3.css */
.w3-bar {
    width: 100%;
    overflow: hidden
}

.w3-center .w3-bar {
    display: inline-block;
    width: auto
}

.w3-bar .w3-bar-item {
    padding: 8px 16px;
    float: left;
    width: auto;
    border: none;
    display: block;
    outline: 0
}

.w3-bar .w3-dropdown-hover, .w3-bar .w3-dropdown-click {
    position: static;
    float: left
}

.w3-bar .w3-button {
    white-space: normal
}

.w3-bar-block .w3-bar-item {
    width: 100%;
    display: block;
    padding: 8px 16px;
    text-align: left;
    border: none;
    white-space: normal;
    float: none;
    outline: 0
}

.w3-bar-block.w3-center .w3-bar-item {
    text-align: center
}

.w3-block {
    display: block;
    width: 100%
}

.w3-responsive {
    display: block;
    overflow-x: auto
}

.w3-container:after, .w3-container:before, .w3-panel:after, .w3-panel:before, .w3-row:after, .w3-row:before, .w3-row-padding:after, .w3-row-padding:before,
.w3-cell-row:before, .w3-cell-row:after, .w3-clear:after, .w3-clear:before, .w3-bar:before, .w3-bar:after {
    content: "";
    display: table;
    clear: both
}
/*#endregion */








/*
 * Copyright 2016 Google Inc.
 * 
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 * 
 *      http://www.apache.org/licenses/LICENSE-2.0
 * 
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

* {
    box-sizing: border-box;
}


button {
    cursor: pointer;
}

.SquareCornerButton {
    height: 20px;
    width: 20px;
}

.TopLeft, table.TopLeft tr td {
    vertical-align: top;
    text-align: left;
}

html, body {
    padding: 0;
    margin: 0;
    height: 100%;
    width: 100%;
    font-family: 'Helvetica', 'Verdana', sans-serif;
    font-weight: 400;
    font-display: optional;
    color: #444;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html {
    overflow: hidden;
}

body {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -webkit-align-content: stretch;
    -ms-flex-line-pack: stretch;
    align-content: stretch;
    background: #ececec;
}

.header {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    box-shadow: none;
    height: 55px !important;
    overflow: hidden;
    z-index: 50;
    width: 100%;
    color: #FFF;
    background: rebeccapurple; /*#3F51B5;*/
    position: fixed;
    font-size: 20px;
    box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 2px 9px 1px rgba(0, 0, 0, 0.12), 0 4px 2px -2px rgba(0, 0, 0, 0.2);
    padding: 16px 16px 0 16px;
    will-change: transform;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -webkit-align-content: center;
    -ms-flex-line-pack: center;
    align-content: center;
    -webkit-transition: -webkit-transform 0.233s cubic-bezier(0, 0, 0.21, 1) 0.1s;
    transition: -webkit-transform 0.233s cubic-bezier(0, 0, 0.21, 1) 0.1s;
    transition: transform 0.233s cubic-bezier(0, 0, 0.21, 1) 0.1s;
    transition: transform 0.233s cubic-bezier(0, 0, 0.21, 1) 0.1s, -webkit-transform 0.233s cubic-bezier(0, 0, 0.21, 1) 0.1s;
}

    .header .headerButton {
        width: 24px;
        height: 24px;
        margin-right: 16px;
        text-indent: -30000px;
        overflow: hidden;
        opacity: 0.54;
        -webkit-transition: opacity 0.333s cubic-bezier(0, 0, 0.21, 1);
        transition: opacity 0.333s cubic-bezier(0, 0, 0.21, 1);
        border: none;
        outline: none;
        cursor: pointer;
    }

    .header #butPortfolioManagement {
        background: url(/images/ic_refresh_white_24px.svg) center center no-repeat;
    }

    .header #butAdd {
        background: url(/images/ic_add_white_24px.svg) center center no-repeat;
    }

    .header #butSimulation {
        border: thin dashed #00FF00;
        background: url(/images/ic_add_white_24px.svg) no-repeat center center;
    }

.header__title {
    font-weight: 400;
    font-size: 20px;
    vertical-align: middle;
    position: absolute;
    left: 40px;
    width: calc(100%-40px);
    margin: 0;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

#imgTopSimulation, #imgTopPortfolio, #imgTopUser, #imgTopHelp,
.Simulation, .Portfolio, .TopUser {
    height: 32px;
    width: 32px;
}

.PCAUserScreenTop, .PCAOwnerScreenTop, .PCASimScreenTop, .PCAHelpScreenTop {
    position: absolute;
    left: calc(100% - 50px);
    top: 15px;
    /*    background-color: white;  */
}

.PCAUserScreenTop {
    left: calc(100% - 50px);
}

.PCAHelpScreenTop {
    left: calc(100% - 100px);
}

.PCAOwnerScreenTop {
    left: calc(100% - 150px);
}

.PCASimScreenTop {
    left: calc(100% - 200px);
}

.PCATitleTop {
    width: 125px;
    font-weight: 400;
    font-size: 20px;
    vertical-align: middle;
    position: relative;
    float: left;
    -webkit-box-flex: 2;
    -webkit-flex: 2;
    -ms-flex: 2;
    flex: 2;
}

.PCATitleImgTop {
    vertical-align: middle;
    position: relative;
    float: left;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.loader {
    left: 50%;
    top: 50%;
    position: fixed;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

    .loader #spinner {
        box-sizing: border-box;
        stroke: #673AB7;
        stroke-width: 3px;
        -webkit-transform-origin: 50%;
        transform-origin: 50%;
        -webkit-animation: line 1.6s cubic-bezier(0.4, 0, 0.2, 1) infinite, rotate 1.6s linear infinite;
        animation: line 1.6s cubic-bezier(0.4, 0, 0.2, 1) infinite, rotate 1.6s linear infinite;
    }

@-webkit-keyframes rotate {
    from {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }

    to {
        -webkit-transform: rotate(450deg);
        transform: rotate(450deg);
    }
}

@keyframes rotate {
    from {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }

    to {
        -webkit-transform: rotate(450deg);
        transform: rotate(450deg);
    }
}

@-webkit-keyframes line {
    0% {
        stroke-dasharray: 2, 85.964;
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }

    50% {
        stroke-dasharray: 65.973, 21.9911;
        stroke-dashoffset: 0;
    }

    100% {
        stroke-dasharray: 2, 85.964;
        stroke-dashoffset: -65.973;
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg);
    }
}

@keyframes line {
    0% {
        stroke-dasharray: 2, 85.964;
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }

    50% {
        stroke-dasharray: 65.973, 21.9911;
        stroke-dashoffset: 0;
    }

    100% {
        stroke-dasharray: 2, 85.964;
        stroke-dashoffset: -65.973;
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg);
    }
}

.main {
    text-align: center;
    align-content: center;
    padding-top: 60px;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}
.dialog-TransactionDetailContainer {
    position: relative;
    left: 5px;
    top: 245px;
    z-index: 110;
}
.PayDialog-container {
    padding-top: 60px;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.NotesDialog-container {
    padding-top: 60px;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.PayDialog-container--visible {
    /*opacity: 1;
  pointer-events: all;*/
}

.NotesDialog-container--visible {
    /*opacity: 1;
  pointer-events: all;*/
}

.Pay-Inner-dialog {
}

.Notes-Inner-dialog {
}

.Pay-Inner-dialog > div {
    padding-left: 5px;
    padding-right: 5px;
}

.Notes-Inner-dialog > div {
    padding-left: 5px;
    padding-right: 5px;
}

.UserDialog-container {
    padding-top: 60px;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.HelpDialog-container--visible {
    /*opacity: 1;
  pointer-events: all;*/
}

.UserDialog-container--visible {
    /*opacity: 1;
  pointer-events: all;*/
}

.Help-Inner-dialog {
}

.User-Inner-dialog {
}

.MemberButtonListDialog-container {
    padding-top: 60px;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.MemberButtonListDialog-container--visible {
    /*opacity: 1;
  pointer-events: all;*/
}

.MemberButtonList-Inner-dialog {
}


.Pay-Inner-dialog > div {
    padding-left: 5px;
    padding-right: 5px;
}



.Pay-Inner-dialog > div {
    padding-left: 5px;
    padding-right: 5px;
}


.dialog-LiveTwitterFeed {
    padding-top: 60px;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.dialog-LiveTwitterFeedcontainer--visible {
    /*opacity: 1;
    pointer-events: auto;*/
}

.dialog-CompletePurchasecontainer {
    background: rgba(0, 0, 0, 0.57);
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    pointer-events: none;
    will-change: opacity;
    -webkit-transition: opacity 0.333s cubic-bezier(0, 0, 0.21, 1);
    transition: opacity 0.333s cubic-bezier(0, 0, 0.21, 1);
}

.dialog-CompletePurchasecontainer--visible {
    opacity: 1;
    pointer-events: auto;
}

.dialog-container {
    background: rgba(0, 0, 0, 0.57);
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    pointer-events: none;
    will-change: opacity;
    -webkit-transition: opacity 0.333s cubic-bezier(0, 0, 0.21, 1);
    transition: opacity 0.333s cubic-bezier(0, 0, 0.21, 1);
}

.dialog-container--visible {
    opacity: 1;
    pointer-events: auto;
}

.dialog {
    background: #FFF;
    border-radius: 2px;
    box-shadow: 0 0 14px rgba(0, 0, 0, 0.24), 0 14px 28px rgba(0, 0, 0, 0.48);
    min-width: 280px;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%) translateY(30px);
    transform: translate(-50%, -50%) translateY(30px);
    -webkit-transition: -webkit-transform 0.333s cubic-bezier(0, 0, 0.21, 1) 0.05s;
    transition: -webkit-transform 0.333s cubic-bezier(0, 0, 0.21, 1) 0.05s;
    transition: transform 0.333s cubic-bezier(0, 0, 0.21, 1) 0.05s;
    transition: transform 0.333s cubic-bezier(0, 0, 0.21, 1) 0.05s, -webkit-transform 0.333s cubic-bezier(0, 0, 0.21, 1) 0.05s;
}

    .dialog > div {
        padding-left: 24px;
        padding-right: 24px;
    }

.dialog-title {
    padding-top: 10px;
    font-size: 1.25em;
}

.dialog-body {
    padding-top: 10px;
    padding-bottom: 24px;
}

    .dialog-body form table tbody input,
    .dialog-body form table a {
        margin-bottom: 8px;
    }

    .dialog-body select {
        width: 100%;
        /*font-size: 2em;*/
    }

.dialog-buttons {
    padding: 8px !important;
    float: right;
}

.card {
    padding: 10px;
    position: relative;
    box-sizing: border-box;
    background: #fff;
    border-radius: 2px;
    margin: 10px;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
}

.CurrentTripNote {
    padding: 6px;
    position: relative;
    box-sizing: border-box;
    background: #fff;
    border-radius: 2px;
    margin: 6px;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
}


.Boxed {
    border-style: groove;
    border-width: medium;
    border-color: #C0C0C0;
}

.Grouping {
    text-wrap: none;
}

    .Grouping > div {
        text-wrap: none;
    }

    .Grouping > span {
        text-wrap: none;
    }

.RacePicks {
    text-wrap: none;
    display: inline-block;
}

    .RacePicks > div {
        padding-right: 4px;
        margin-right: 1px;
        border-radius: 2px;
        float: left;
    }

        .RacePicks > div:nth-child(even) {
        }


.mdl-button {
    background: transparent;
    border: none;
    border-radius: 2px;
    color: black;
    position: relative;
    height: 36px;
    margin: 0;
    min-width: 64px;
    padding: 0 16px;
    display: inline-block;
    font-family: "Roboto", "Helvetica", "Arial", sans-serif;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    line-height: 1;
    letter-spacing: 0;
    overflow: hidden;
    will-change: box-shadow;
    -webkit-transition: box-shadow 0.2s cubic-bezier(0.4, 0, 1, 1), background-color 0.2s cubic-bezier(0.4, 0, 0.2, 1), color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    transition: box-shadow 0.2s cubic-bezier(0.4, 0, 1, 1), background-color 0.2s cubic-bezier(0.4, 0, 0.2, 1), color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    outline: none;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    line-height: 36px;
    vertical-align: middle;
}

    .mdl-button::-moz-focus-inner {
        border: 0;
    }

    .mdl-button:hover {
        background-color: rgba(158, 158, 158, 0.2);
    }

    .mdl-button:focus:not(:active) {
        background-color: rgba(0, 0, 0, 0.12);
    }

    .mdl-button:active {
        background-color: rgba(158, 158, 158, 0.4);
    }

    .mdl-button.mdl-button--colored {
        color: #3f51b5;
    }

        .mdl-button.mdl-button--colored:focus:not(:active) {
            background-color: rgba(0, 0, 0, 0.12);
        }

.mdl-button--primary.mdl-button--primary {
    color: #3f51b5;
}

.mdl-button--primary.mdl-button--primary {
    background: white;
}

    .mdl-button--primary.mdl-button--primary.mdl-button--raised, .mdl-button--primary.mdl-button--primary.mdl-button--fab {
        color: white;
        background-color: #3f51b5;
    }



.mainInner {
    width: 100%;
    text-align: center;
    align-content: center;
}

    .mainInner div {
        width: 99%;
        text-align: center;
        align-content: center;
    }

/*#region Side bar Area*/
#sidebarMenu {
    z-index: 75;
    height: 100%;
    position: fixed;
    left: 0;
    width: 250px;
    margin-top: 60px;
    transform: translateX(-250px);
    transition: transform 250ms ease-in-out;
    background: linear-gradient(180deg, #FC466B 0%, #3F5EFB 100%);
}

.sidebarMenuInner {
    margin: 0;
    padding: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.10);
}

    .sidebarMenuInner li {
        list-style: none;
        color: #fff;
        text-transform: uppercase;
        font-weight: bold;
        padding: 15px;
        cursor: pointer;
        border-bottom: 1px solid rgba(255, 255, 255, 0.10);
    }

        .sidebarMenuInner li span {
            display: block;
            font-size: 14px;
            color: rgba(255, 255, 255, 0.50);
        }

        .sidebarMenuInner li a {
            color: #fff;
            text-transform: uppercase;
            font-weight: bold;
            cursor: pointer;
            text-decoration: none;
        }

input[type="checkbox"]:checked ~ #sidebarMenu {
    transform: translateX(0);
}

input[type=checkbox] {
    transition: all 0.3s;
    box-sizing: border-box;
    display: none;
}

.sidebarIconToggle {
    transition: all 0.3s;
    box-sizing: border-box;
    cursor: pointer;
    position: absolute;
    z-index: 99;
    height: 100%;
    width: 100%;
    top: 22px;
    left: 15px;
    height: 22px;
    width: 22px;
}

.spinner {
    transition: all 0.3s;
    box-sizing: border-box;
    position: absolute;
    height: 3px;
    width: 100%;
    background-color: #fff;
}

.horizontal {
    transition: all 0.3s;
    box-sizing: border-box;
    position: relative;
    float: left;
    margin-top: 3px;
}

.diagonal.part-1 {
    position: relative;
    transition: all 0.3s;
    box-sizing: border-box;
    float: left;
}

.diagonal.part-2 {
    transition: all 0.3s;
    box-sizing: border-box;
    position: relative;
    float: left;
    margin-top: 3px;
}

input[type=checkbox]:checked ~ .sidebarIconToggle > .horizontal {
    transition: all 0.3s;
    box-sizing: border-box;
    opacity: 0;
}

input[type=checkbox]:checked ~ .sidebarIconToggle > .diagonal.part-1 {
    transition: all 0.3s;
    box-sizing: border-box;
    transform: rotate(135deg);
    margin-top: 8px;
}

input[type=checkbox]:checked ~ .sidebarIconToggle > .diagonal.part-2 {
    transition: all 0.3s;
    box-sizing: border-box;
    transform: rotate(-135deg);
    margin-top: -9px;
}

.SmallText {
    font-size: small;
}

.SmallSideBar {
    color: black;
    text-transform: initial;
    font-weight: normal;
    cursor: pointer;
    text-decoration: none;
    font-size: 10px;
}
/*#endregion */
.Smallwidth {
    width: 10px;
}

.HighLightUpdateField {
    background-color: Highlight;
    color: HighlightText;
}

/*  BEGIN HELP MENU AREA */
ul.BreadCrumbs {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: #333333;
}

    ul.BreadCrumbs li {
        float: left;
    }

        ul.BreadCrumbs li .HelpButton {
            display: block;
            color: white;
            text-align: center;
            padding: 16px;
            text-decoration: none;
        }

            ul.BreadCrumbs li .HelpButton:hover {
                background-color: #111111;
            }
/*  END HELP MENU AREA */
