﻿body {
    background-color: #E5E5E5;
    margin:0;
}

.demo-content {
    position: absolute;
    top: 41px;
    left: 0;
    bottom: 0;
    right: 0;
    overflow: hidden;
    
}

.demo-header {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: space-between;
    padding-left: 20px;
    background-color: #5f368d;
    position: static;
    top: 0px;
    height: 41px;
    left: 0;
    right: 0;
    overflow: hidden;
    color: white;
    box-sizing: border-box;
    font-weight: 600;
    font-family: 'Segoe UI','Helvetica Neue',Helvetica,Verdana,sans-serif;
}

.demo-header .demo-title {
    font-family: 'Segoe UI','Helvetica Neue',Helvetica,Verdana,sans-serif;
    min-width: 150px;
}
    .demo-header .demo-title #working-mode-title {
        color: #af9bc6;
        padding-left: 5px;
    }
    .demo-header a {
        color: white;
        text-decoration: none;
    }
    .demo-header div {
        display: inline-flex;
        height: 100%;
        align-items: center;
    }
    .demo-header .demo-toolbar {
        text-transform: uppercase;
        position: relative;
        margin-left: 40px;
        font-size: 11px;
    }

    .demo-header #designer-mode-button {
        height: 100%;
        width: 105px;
        padding: 13px 10px 13px 45px;
        cursor: pointer;
    }
        .demo-header #designer-mode-button:hover {
            background-color: #462868;
        }

        .demo-header #designer-mode-button.dx-state-disabled {
            background-color: transparent;
            color: #977cb5;
            cursor: auto;
        }

    .demo-header #designer-mode-button svg {
        width: 26px;
        height: 26px;
        position: absolute;
        left: 10px;
        top: 7px;
    }
        .demo-header #designer-mode-button.dx-state-disabled svg .editDashboardIcon {
            fill: #977cb5;
        }
        
    .demo-header .demo-toolbar-button {
        cursor: default;
    }

    .demo-header .demo-device-switch {
        margin-left: 17px;
    }
        .demo-header .demo-device-switch a {
            padding: 5px 10px;
            display: inline-block;
            background-color: #76559B;
            cursor: pointer;
        }

            .demo-header .demo-device-switch a:hover {
                background-color: #8768aa;
            }
            .demo-header .demo-device-switch a.dx-state-selected {
                background-color: #462865;
                color: white;
            }

    .demo-header #info-button {
        padding: 0 29px;
        width: 24px;
        height: 24px;
        cursor: pointer;
    }
        .demo-header #info-button:hover svg path {
            fill: #77549e;
        }
    .demo-header #info-button svg {
        width: 24px;
    }

.phone-wrapper {
    background-color: #515151;
    border-radius: 5px;
    width: 330px;
    height: 520px;
    padding: 65px 10px;
    margin: 40px auto;
    box-sizing: content-box;
}

    .phone-wrapper iframe {
        width: 100%;
        height: 100%;
        border: none;
    }

.qr-wrapper {
    position: absolute;
    right: 30px;
    bottom: 30px;
}

    .qr-wrapper img {
        width: 200px;
        height: 200px;
        border: 0;
    }

#dashboardControl .dx-dashboard-panel-extension .dx-dashboard-title-panel {
    display: none;
}
#dashboardControl .dx-dashboard-panel-extension .dx-dashboard-dashboard-list {
    top: 0;
}

.demo-info-sidebar {
    color: #212529;
    border-radius: 0px;
    border: none;
    box-shadow: 0px 0px 32px rgba(0, 0, 0, 0.25);
    background: white;
    padding: 50px;
    z-index: 4000;
    position: absolute;
    right: -700px;
    width: 600px;
    top: 0;
    bottom: 0;
    transition: right .15s;
}

    .demo-info-sidebar.visible {
        right: 0;
    }

    .demo-info-sidebar:focus {
        border: none;
    }


    .demo-info-sidebar.demo-mobile-view .dx-popup-content {
        padding: 20px;
    }

    .demo-info-sidebar.demo-mobile-view h1 {
        margin-right: 50px;
    }


    .demo-info-sidebar h1 {
        margin: 0px;
        font-size: 28px;
        font-weight: 500;
    }

    .demo-info-sidebar h2 {
        font-size: 20px;
        font-weight: 400;
        display: inline-block;
        margin: 20px 0 0;
    }

    .demo-info-sidebar a {
        color: #5f368d;
    }

    .demo-info-sidebar a, .demo-info-sidebar p {
        font-size: 10pt;
    }

        .demo-info-sidebar p.description {
            line-height: 1.6;
        }

    .demo-info-sidebar ul {
        list-style-type: none;
        padding-left: 0;
        margin: 0;
    }

    .demo-info-sidebar .logo {
        position: absolute;
        bottom: 50px;
        left: 50px;
        width: 170px;
        height: 28px;
    }

    .demo-info-sidebar .closeButton {
        position: absolute;
        width: 18px;
        height: 18px;
        top: 25px;
        right: 25px;
        z-index: 1000;
    }

        .demo-info-sidebar .closeButton img {
            cursor: pointer;
        }