﻿#debugHost {
    display: flex;
    flex-direction: column;
    /*font-size: 13px;*/
    /*color: #4a4a4a;*/
    height: 100%;
}

#debugHostBtn {
    order: 4;
}

#debugHostBtn a {
    background: url('images/console_panel_on.svg') no-repeat center center, linear-gradient(transparent, transparent);
}

#debugHostBtn a.selected, #debugHostBtn a.selected:hover {
    background: url('images/console_panel_off.svg') no-repeat center center, linear-gradient(transparent, transparent);
}

#debugToolbar {
    /*margin-left: 8px;*/
}

#variablesClearLink {
    display: inline-block;
    margin-bottom: 10px;
}

#traceClearLink {
    display: inline-block;
    margin-bottom: 15px;
}

#traceClearLink:hover {
    color: #1482C5;
}

#debugScrollContainer 
{
    overflow: auto;
    width: 100%;
    -webkit-overflow-scrolling: touch;
    flex: 1;
}

#debugContainer {
    padding: 10px 0px 10px 0px;
}

#consoleTitle {
    clear: right;
    padding: 20px 15px;
}

.variableDiv
{
    margin-bottom: 20px;
    line-height: 16px;

}

#variablesDiv
{
    clear: right;
}

#variablesContainer {
    padding: 0px 15px 12px 15px;
}

#traceContainer {
    margin-bottom: 5px;
    padding: 5px 15px 0px 15px;
}

.sectionTitle {
    font-size: 14px;
    font-weight: 500;
    color: #2c2c2c;
    display: inline-block;
    margin: 8px 0;
}

.debugToolbarButton 
{
	font-size: 1em;
	color: #069;
}

.axEventBlock {
    display: inline-block;
    width: 100%;
    margin: 5px 0px 5px 0px;
    line-height: 20px;
    /*border-bottom: solid 5px #e7e7e7;*/
}

.axEventContainer {
    /*background-color: #e7e7e7;*/
    padding: 0px 15px 0px 15px;
}

.axTime {
    margin: 0px 0px 0px 5px;
    font-size: 12px;
    color: #64748B;
    display: inline-block;
    float: right;
}

.axLabel {
    display: inline-block;
    color: #2563EB;
}

.axEvent {
    font-weight: 500;
    overflow: hidden;
    text-overflow: ellipsis;
    font-weight: 600;
}

.axCaseContainer {
    justify-content: space-between;
    padding: 0px 15px 0px 25px;
}

.axActionContainer {
    justify-content: space-between;
    padding: 0px 15px 0px 35px;
    color: #64748B;
}

.axInfoContainer {
    justify-content: space-between;
    padding: 0px 15px 0px 45px;
}

.axCaseContainer {
    /*border-top: solid 2px #e7e7e7;*/
    /*background-color: #47b6b5;*/
    /*background-color: #e7e7e7;*/
    /*color: #ffffff;*/
}
.axActionContainer {
    /*border-top: solid 3px #e7e7e7;*/
}
.axInfoContainer {
    /*border-top: solid 1px #e7e7e7;*/
}

.axCaseItem, .axActionItem, .axInfoItem {
    overflow: hidden;
    text-overflow: ellipsis; 
}
.axCaseItem {
    font-weight: 600;
}
.axActionItem {
    font-weight: 600;
    color: #1e293b;
}
.axInfoItem {
    /*color: #8c8c8c;*/
}

.axCaseDescription {
    flex: 5 0 33%;
    font-weight: 400;
}
/*.axActionDescription, .axInfoDescription {
    flex: 5 0 33%;
    margin-left: 10px;
    text-align: right;
}*/
.axCaseDescription, .axActionDescription {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.axInfoDescription, .axActionDescription {
    color: #8c8c8c;
    font-size: 11px;
}

.variableName {
    width: 55%;
    line-height: 0.92;
    text-align: left;
    display: inline-block;
    word-wrap: break-word;
    vertical-align: top;
}

.variableValue {
    width: 45%;
    line-height: 0.92;
    text-align: right;
    display: inline-block;
    word-wrap: break-word;
}

.variableValue span {
    color: #64748B;
}

.traceEvent {
    border-bottom: solid 1px #e7e7e7;
}

.tracePausedNotification {
    height: 25px;
    /*background-color: #e7e7e7;*/
    border-radius: 5px;
    line-height: 25px;
    margin: 5px 10px;
    text-align: center
}

.variableList{
    width: 100%;
    margin-bottom: 4px;
}

.traceOption {
    margin-left: 10px;
    float: right;
    font-size: 12px;
    padding: 8px;
    height: 28px;
    line-height: 10px;
    border: 1px solid #CBD5E1;
    border-radius: 4px;
    font-weight: 500;
    box-sizing: border-box;
}

.traceOption:hover {
    background-color: rgba(229, 231, 235, 0.4); 
}

#traceEmptyState {
    margin: auto;
    font-size: 14px;
    padding: 0 28px;
    text-align: center;
    color: #64748B;
}

.debugLinksContainer {
    text-align: right;
}

.axEventCounter {
    display: inline-block;
    width: 21px;
    height: 21px;
    font-size: 12px;
    border-radius: 50%;
    text-align: center;
    color: #ffffff;
    background-color: rgba(30, 152, 215, 1);
    margin-left: 5px;
    float: right;
}