/* Layout */
html, body, .form
{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

body
{
    position: relative;
    min-height: 100%;
    padding-top: 1px;
    margin-top: -1px;
}

.form
{
    padding-bottom: 46px; /* Footer Height */
}

html, .form
{
    height: 100%;
}

/* Content */
.content
{
    width: 100%;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    min-height: 100%;
    height: 100%;
    -webkit-overflow-scrolling: touch;
}

/* Footer */
.footer-wrapper
{
    height: 46px; /* Footer Height */
    position: absolute;
    bottom: 0;
    width: 100%
}

.footer
{
    font-size: 10.5px;
    color: #999999;
}

.footer-link
{
    color: #999999;
    border-right: 1px solid #bbbbbb;
    margin-right: 7px;
    padding-right: 10px;
    white-space: nowrap;
}

.footer-link:last-child
{
    border: none;
    margin: 0;
    padding: 0;
}

.footer-left
{
    float: left;
}

.footer-right
{
    float: right;
}

.footer-left,
.footer-right
{
    padding: 16px 24px;
}

@media (max-width: 599px)
{
    .footer-left,
    .footer-right
    {
        padding: 16px 4px;
    }
}

/* Header */
.app-header
{
    padding: 0 !important;
    box-shadow: 0px 2px 5px 0 rgba(0, 0, 0, 0.2);
    border-bottom-width: 0 !important;
}

.app-header .left-block
{
    float: left;
}

.app-header .right-block
{
    float: right;
}

.app-header .menu-container
{
    overflow: hidden;
}

.app-header .menu-container > div
{
    float: right;
}

.header-logo {
    background: url('Images/logo.svg') no-repeat center;
    background-size: 115px 29px;
    height: 29px;
    width: 115px;
}

@media (max-width: 359px) {
    .header-logo {
        background: url('Images/logo-small.svg') no-repeat center;
        background-size: 115px 29px;
        height: 29px;
        width: 115px;
    }
}

.app-header .left-block .header-menu .image-item > .dxm-content
{
    padding: 0 8px 0 8px;
}

.app-header .right-block .header-menu .image-item > .dxm-content
{
    padding: 0 7px 0 7px;
}

.app-header .left-block .header-menu .item.toggle-item > .dxm-content
{
    padding: 0 14px 0 14px;
}

.app-header .right-block .header-menu .item.toggle-item > .dxm-content
{
    padding: 0 14px 0 14px;
}

.app-header .header-menu .item.selected
{
    color: inherit;
    box-sizing: border-box;
    /* DXCOMMENT: Duplicates color from the web.config (devexpress->themes->baseColor) */
    border-bottom: solid 2px #83B81A;
}
.app-header .header-menu .item.selected,
.app-header .header-menu .item.hovered
{
    background-color: rgba(0, 0, 0, 0.05);
}

    .app-header .header-menu .item.selected .dxm-content
    {
        margin-bottom: -2px;
    }
    .app-header .header-menu .item.selected .dxm-content,
    .app-header .header-menu .item.hovered .dxm-content
    {
        color: inherit;
    }

/* Main Menu */
.header-menu
{
    background-color: white !important;
    border-style: none !important;
    height: 3.13rem;
}

@media (max-width: 599px)
{
    .menu-container .dxm-ltr > div:not(.header-menu)
    {
        width: 100% !important;
    }
}

.header-sub-menu
{
    width: 100% !important;
}

.header-sub-menu .item
{
    padding: 12px 7px !important;
}

/* Ellipsis -> Apps Icon */
.header-menu .adaptive-image
{
    background: url('Images/adaptive-menu.svg') no-repeat center;
    width: 16px;
    height: 16px;
    padding: 0 8px;
}
/* Hide item images */
.header-menu.application-menu .item .dxm-content > img
{
    display: none !important;
}

@media (max-width: 720px) /* Change Ellipsis image Apps Icon */
{
    .app-header .menu-container > div
    {
        width: 47px;
    }

    .header-menu .adaptive-image
    {
        background: url('Images/application.svg') no-repeat center;
    }

    /* Show item images */
    .header-menu.application-menu .item .dxm-content > img
    {
        display: inline-block;
    }
}

/* Right area menu */
.header-menu .toggle-item .image
{
    background: url('Images/double.svg') no-repeat center;
}

.header-menu .toggle-item.checked .image
{
    background: url('Images/double-close.svg') no-repeat center;
}

.header-menu .image-item
{
    vertical-align: middle !important;
}

.header-menu .vertically-aligned
{
    font-size: 0;
}

/* Account */
.header-menu .account-background
{
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.1);
}

.header-menu .account-background div
{
    border-radius: 50%;
}

.header-menu .account-background .empty-image
{
    width: 16px;
    height: 16px;
    margin: 8px;
    display: inline-block;
    background: url('Images/user.svg');
}

.header-menu .account-background .account-image
{
    width: 32px;
    height: 32px;
    font-size: 0.8em;
    font-weight: 600;
    line-height: 32px;
    text-align: center;
    margin: 0 auto;
    display: table;
    background-size: 100%;
}

.user-info .avatar img
{
    float: left;
    height: 43px;
    border-radius: 50%;
}

.user-info .text-container
{
    height: 3.13rem;
    margin-left: 60px;
}

.user-info .text-container .user-name
{
    color: #444444;
    font-size: 1.14em;
}

.user-info .text-container .email
{
    display: block;
    color: #666666;
    font-size: 0.86em;
}

.myaccount-item
{
    background-color: #e4e4e4;
}

/* Left Panel */
.left-panel
{
    border: none;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1);
    -webkit-overflow-scrolling: touch;
}

.leftpanel-section
{
    border: none !important;
    background-color: rgba(0, 0, 0, 0.1);
}

.section-caption
{
    height: 2.69rem;
    line-height: 2.69rem;
    vertical-align: middle;
    margin: 0;
}

.section-caption
{
    border-top: solid 1px #f0f0f0;
    border-bottom: solid 1px #f0f0f0;
}

.left-panel.expand-bar,
.right-panel.expand-bar
{
    border: 0;
}

a.tree-view-node
{
    color: #666666;
    padding-top: 7px !important;
    padding-bottom: 8px !important;
    padding-right: 8px !important;
    border: none !important;
}

a.tree-view-node.hovered
{
    text-decoration: none;
}

.tree-view-elbow
{
    padding-top: 3px;
}

/* Right Panel */
.right-panel
{
    border-left: 1px solid #f0f0f0;
}

.settings-content
{
    padding: 24px 20px;
}

.settings-content h2
{
    color: #494949;
    font-size: 1.3em;
    font-weight: 600;
}

.settings-content p
{
    color: #999999;
}

/* Toolbar */
.page-toolbar-wrapper
{
    position: fixed;
    background-color: white;
    left: 0;
    right: 0;
    z-index: 1;
}

.page-toolbar
{
    background-color: rgba(0, 0, 0, 0.1) !important;
    border: none !important;
    font-size: 0.93em !important;
    height: 2.69rem;
}

.page-toolbar .item > h1,
.section-caption
{
    color: #494949;
    font-weight: 600;
    font-style: normal;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding-left: 24px;
}

.page-toolbar .item > h1
{
    font-size: 1.46em;
}

.page-toolbar .item > h1
{
    margin: 0;
    padding: 0 17px;
}

.page-toolbar .item .dxm-disabled .dxm-image
{
    opacity: 0.3;
}

@media (max-width: 599px)
{
    .page-toolbar .item > h1
    {
        max-width: 150px;
    }
}

/*CUSTOM DESIGN*/
.header-logo {
    background-size: 79px 20px !important;
    height: 20px !important;
    width: 79px !important;
}

.app-header {
    box-shadow: none !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1) !important;
}

.page-toolbar {
    background-color: #fff !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1) !important;
}

.focused {
    background-color: #f0fcda !important;
    color: black !important;
}

.page-toolbar ul li img {
    height: 11px !important;
    width: 11px !important;
}

.page-toolbar ul li .dx-vam {
    color: #83B81A !important;
    text-transform: uppercase !important;
}

div.dxtcSys, div.dxtcSys {
}

.formLayout {
    padding: 0px !important;
    margin: 0px !important;
}

.dxflFormLayout_iOS {
    padding: 0px !important;
    margin: 0px !important;
}

.dxflGroup_iOS {
    padding: 0px !important;
    margin: 0px !important;
}

.dxtc-flex{
    border-left: none !important;
}

.dxtc-content {
    border: none !important;
    padding: 0px !important;
    margin: 0px !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1) !important;
}

.dxpc-contentWrapper {
    padding-left: 0px !important;
    padding-right: 0px !important;
}

.dxtc-strip, .dxtc-row, .dxtc-alLeft, .dxtc-stripContainer {
    border: none !important;
}

.dxtc-activeTab {
}

.dxtcLite_iOS.dxtc-top > .dxtc-stripContainer .dxtc-lead, .dxtcLite_iOS.dxtc-top > .dxtc-stripContainer .dxtc-tabs .dxtc-row:first-child .dxtc-n {
    border-top-left-radius: 0px;
}

.dxtcLite_iOS.dxtc-top > .dxtc-stripContainer .dxtc-last, .dxtcLite_iOS.dxtc-top > .dxtc-stripContainer .dxtc-tabs .dxtc-row:first-child .dxtc-l {
    border-top-right-radius: 0px;
}

.dxtcLite_iOS.dxtc-top > .dxtc-stripContainer .dxtc-activeTab, .dxtcLite_iOS.dxtc-top > .dxtc-stripContainer .dxtc-tab {
    border: 1px solid rgba(0, 0, 0, 0.1) !important;
}

.dxtcLite_iOS > .dxtc-stripContainer .dxtc-activeTab, .dxtcLite_iOS > .dxtc-stripContainer .dxtc-activeTab a {
    color: #FFFFFF;
}

.dxgvHeader_iOS {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
    padding-right: 5px !important;
}

.dxWeb_edtCheckBoxChecked_iOS dxICheckBox_iOS dxichSys dx-not-acc {
}

.dxICheckBox_iOS{
    padding: 0px !important;
    margin: 0px !important;
    width: 20px !important;
    height: 20px !important;
    border-radius: 0px !important;
    background: rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.3) !important;
    border-radius: 100px !important;
}

.dxWeb_edtCheckBoxChecked_iOS {
    padding: 0px !important;
    margin: 0px !important;
    width: 20px !important;
    height: 20px !important;
    border-radius: 0px !important;
    border-radius: 100px !important;
    background: url('Images/check.svg') no-repeat center !important;
    background-size: 20px 20px !important;
}

.dxtvControl_iOS {
    padding-top: 10px !important;
}

.dxtvControl_iOS ul li {
    padding-top: 5px !important;
    padding-bottom: 5px !important;
    font-size: 14px;
}

.dxtvControl_iOS ul li ul li {
    padding-top: 0px !important;
    padding-bottom: 0px !important;
}

.dxtvControl_iOS ul li ul li :hover {
    background: none !important;
}

.dxtvControl_iOS ul li ul li a:hover {
    color: #87c01e !important;
}

.dxtvControl_iOS ul li img{
    margin-top: 2px !important;
}

.dxtv-nd:hover {
    background: none !important;
}

.dxtv-ndSel {
    color: #000 !important;
    background: none !important;
}

.dxtc-rightIndent {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1) !important;
}

.dxbButton_iOS {
    background: #87c01e !important;
    color: #fff !important;
    margin-top: 20px !important;
    padding: 10px 15px !important;
    margin-right: 0px !important;
    margin-left: 10px !important;
}

.dxgvPopupEditForm_iOS {
    padding: 20px 10px !important;
}

.dxpc-header {
    padding-left:10px !important;
}

.content .dxtcLite_iOS {
    margin-top: 40px !important;
}

.dxpc-contentWrapper .dxtcLite_iOS {
    margin-top: 0px !important;
}

.dxgvTable_iOS {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1) !important;
}

.page-toolbar h1 {
    text-transform: uppercase !important;
    color: rgba(0, 0, 0, 1) !important;
    font-size: 17px !important;
    font-weight: 600 !important;
}

.footer-wrapper {
    border-top: 1px solid rgba(0, 0, 0, 0.1) !important;
}

.footer-right {
    color: #000 !important;
    font-size: 13px !important;
}


.dxm-content span {
    text-transform: uppercase !important;
}

.dxbDisabled_iOS {
    background: #dddddd !important;
    color: #000 !important;
}

/* width */
::-webkit-scrollbar {
    width: 0px;
    height: 10px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #bbb;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #999;
}

.dxWeb_edtCheckBoxChecked_Office365 {
    background-color : green !important;
}

.dxm-popup ul li .dx-vam {
    color: #83B81A !important;
    text-transform: uppercase !important;
}