.app-window {
    background-color: #242424;
    border: solid 1px #707070;
    margin: 20px;
    width: calc(100% - 40px);
    height: calc(100vh - 82px);
    pointer-events: auto;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 12px 28px 0px, rgba(0, 0, 0, 0.1) 0px 2px 4px 0px, rgba(255, 255, 255, 0.05) 0px 0px 0px 1px inset;
}

.window-header {
    border-bottom: solid 1px #444;
    display: flex;
    justify-content: space-between;
    padding: 10px;
    color: #ddd;
    font-family: Avenir, Helvetica, Arial, sans-serif;
    font-size: 0.9em;
}

    .window-header .title {
        align-self: center;
        padding-left: 5px;
    }

    .window-header .btn-close {
        text-align: right;
        cursor: pointer;
        font-size: 1.4em;
        color: #999;
    }

.window-content {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: flex-start;
}

.btn-close i:hover:before {
    font-weight: 900;
    color: yellow;
}

.window-content .btn {
    width: 240px;
    display: flex;
    justify-content: space-between;
}

h1 {
    font-size: 0.9em;
    color: #fff;
    text-align: left;
    font-weight: normal;
    margin: 0px;
    padding: 0px;
    margin-bottom: 10px;
}

.dataview .accounts-container {
    width: 200px;
    padding: 10px 15px;
    height: calc(100vh - 143px);
    overflow-y: auto;
    color-scheme: dark;
}

    .dataview .accounts-container .accounts {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
    }

        .dataview .accounts-container .accounts .account {
            display: flex;
            flex-direction: row;
            flex-wrap: wrap;
            padding: 10px 10px 10px 0px;
            width: 100%;
            align-items: center;
        }
            .dataview .accounts-container .accounts .account:hover
            {
                cursor: pointer;
            }

            .dataview .accounts-container .accounts .account .name {
                width: 80%;
                font-size: 1.2em;
                color: #fff;
            }

            .dataview .accounts-container .accounts .account .checkbox {
                display: inline-flex;
                justify-content: flex-start;
                padding-right: 8px;
            }

                .dataview .accounts-container .accounts .account .checkbox input {
                    padding: 0px;
                    margin: 0px;
                    width: 14px;
                    float: right;
                }

            .dataview .accounts-container .accounts .account .label {
                width: calc(100% - 24px);
                color: #07c4fe;
                font-size: 0.9em;
                padding: 0px;
            }

.service-info {
    width: calc(100% - 260px);
    height: calc(100vh - 146px);
    overflow-y: scroll;
    padding: 10px 15px;
    background-color: #fff;
}

    .service-info .status {
        padding: 10px 15px;
        width: calc(100% - 30px);
        background-color: green;
        color: #fff;
        height: 30px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .service-info .log {
        width: calc(100% - 30px);
        height: calc(65vh - 30px - 20px);
        padding: 10px 15px 10px 15px;
        overflow-y: scroll;
        color-scheme: dark;
        font-family: Avenir, Helvetica, Arial, sans-serif;
    }

.service-feature {
    background-color: #444;
    color: #fff;
    width: calc(50% - 10px);
    display: flex;
    margin: 0px 5px 10px 5px;
}

    .service-feature:hover {
        cursor: pointer;
        background-color: #666;
    }

    .service-feature .status-bar {
        width: 5px;
    }

.status-green {
    background-color: #0f0;
}

.status-purple {
    background-color: #9183ee;
}

.service-feature .icon {
    padding: 0px 10px;
    display: inline-flex;
    align-items: flex-start;
    padding-top: 10px;
    width: 40px;
}

    .service-feature .icon i {
        font-size: 2.0em;
        color: #07c4fe;
    }


.log table {
    width: 100%;
    color: #fff;
    font-size: 0.8em;
}

    .log table td.date {
        width: 60px;
        color: #aaa;
    }

    .log table td.price {
        width: 40px;
        color: #aaa;
        text-align: right;
    }

.dataview .daterange-container {
    margin-bottom: 10px;
    display: flex;
    justify-content: center;
}

.dataview .daterange {
    background-color: #ddd;
    border: solid 1px #ddd;
    padding: 5px 10px;
    margin-right: 10px;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.8em;
}

.dataview .daterange-selected {
    border: solid 1px #0772ff;
    background-color: #0772ff;
    color: #fff;
}

.dataview .daterange:hover {
    cursor: pointer;
    border: solid 1px #0772ff;
    background-color: #0772ff;
    color: #fff;
}

@@media screen and (max-width: 767px) {
    select:active, input:active, textarea:active {
        font-size: 16px;
    }
}

@@media (max-width: 960px) {
    .service-feature {
        width: 100%;
        margin: 0px 0px 10px 0px;
    }
}


.accounts .fa-circle-dot, .accounts .fa-circle, .accounts .fa-square, .accounts .fa-square-check {
    width: 14px;
    /*-webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: lime;
    color: #222;*/
}

/*.accounts .fa-circle-dot {
    color: #07c4fe;
}
*/
.accounts .fa-square-check {
    
}

.details-masterView {
    width: calc(100% - 230px);
}

.details-subview {
    width: calc(100% - 230px);
    height: calc(100vh - 123px);
}

.details-header {
    display: flex;
    justify-content: space-between;
    width: 100%;
    height: 37px;
    border-bottom: solid 1px #aaa;
    background-color: #ddd;
    font-size: 0.9em;
}

    .details-header select {
        margin: 0px !important;
        padding: 0px 5px;
        height: 30px;
    }

    .details-header label {
        font-weight: bold;
        padding-right: 10px;
    }

.details-content {
    height: calc(100vh - 161px);
    overflow-y: auto;
    background-color: #fff;
}

.details-content-padding {
    padding: 10px 15px;
}

.details-content-placeholder {
    height: calc(100vh - 161px);
    overflow-y: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}