﻿/**********
    MAIN
***********/
.fr-webreport-body {
    display: flex;
    overflow: hidden;
    width: 100%;
    height: 100%;
}

.fr-webreport-report {
    overflow: auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/***********
    SPLIT
************/
.fr-webreport-gutter {
    background-color: #f1f1f1;
    background-repeat: no-repeat;
    background-position: 50%;
}

.fr-webreport -gutter.webreport -gutter-horizontal {
    background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAAeCAYAAADkftS9AAAAIklEQVQoU2M4c+bMfxAGAgYYmwGrIIiDjrELjpo5aiZeMwF+yNnOs5KSvgAAAABJRU5ErkJggg==');
    cursor: ew-resize;
}

/************
    ERROR
************/
.fr-webreport-error-container {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: auto;
}

.fr-webreport-error-text {
    color: red;
    font-family: Consolas,monospace;
    font-size: 16px;
    margin: 20px;
    text-align: center;
}

.fr-webreport-error-response {
    height: 100%;
    position: relative;
}

/*************
    TOOLBAR
**************/
.fr-webreport-toolbar {
    flex-shrink: 0;
    display: flex;
    position: relative;
    z-index: 2;
}
.fr-webreport-settings-btn{
    float:right;
    z-index:4;
    background-color:transparent;
}
/***********
    TABS
***********/
.fr-webreport-tabs {
    flex-shrink: 0;
    font-family: Verdana,Arial,sans-serif;
    background-color: #f1f1f1;
    display: table;
    box-shadow: 0px 3px 4px -2px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
    border-radius: 9px;
}

.fr-webreport-tabs .fr-webreport-tab {
    float: left;
    display: block;
    color: #3b3b3b;
    text-align: center;
    text-decoration: none;
    font-size: 12px;
    background-color: #f1f1f1;
    margin-top: 2px;
    margin-right: 2px;
    border-radius: 9px;
    height: 24px;
}

.fr-webreport-tabs .fr-webreport-tab-title {
    display: block;
    float: left;
    padding: 4.5px 10px;
    color: black;
}

.fr-webreport-tabs .fr-webreport-tab-close {
    width: 13px;
    height: 13px;
    display: block;
    float: left;
    margin-top: 6px;
    margin-right: 6px;
}

.fr-webreport-tabs .fr-webreport-tab-close img{
    border-radius: 10px;
}

.fr-webreport-tabs .fr-webreport-tab:hover {
    background-color: lightgray;
    color: black;
    cursor: pointer;
}

.fr-webreport-tabs .fr-webreport-tab.active {
    background-color: lightgray;
    color: black;
    cursor: default;
}

.fr-webreport-tabs .fr-webreport-tab a img {
    height: 13px;
    opacity: 0;
}

.fr-webreport-tabs .fr-webreport-tab.active a img {
    opacity: 0.5;
}

.fr-webreport-tabs .fr-webreport-tab:hover a img {
    opacity: 0.5;
}

.fr-webreport-tabs .fr-webreport-tab a img:hover {
    opacity: 1;
    background-color: #f1f1f1;
    cursor: pointer;
}

/**************
    OUTLINE
**************/
.fr-webreport-outline {
    overflow: auto;
    height: auto;
    font-family: Verdana,Arial,sans-serif;
    font-size: 11px;
}

.fr-webreport-outline img {
    opacity: 0.5;
}

.fr-webreport-outline-inner {
    padding: 5px;
}

.fr-webreport-outline-node {
    display: flex;
    flex-wrap: wrap;
}

.fr-webreport-outline-caret {
    height: 14px;
    width: 14px;
    margin-top: 1.5px;
    margin-right: 4px;
}

.fr-webreport-outline-caret:hover {
    cursor: pointer;
}

.fr-webreport-outline-caret-blank {
    width: 18px;
}

.fr-webreport-outline-file {
    height: 14px;
    margin-top: 1.5px;
}

.fr-webreport-outline-text {
    white-space: nowrap;
    display: flex;
    align-items: center;
}

.fr-webreport-outline-text > a {
    margin: 2px;
    padding: 2px;
}

.fr-webreport-outline-text > a:hover {
    text-decoration: underline;
    cursor: pointer;
}

.fr-webreport-outline-children {
    padding-left: 20px;
}

/***********
    MISC
***********/
.fr-webreport-pointer:hover {
    cursor: pointer;
}

.fr-webreport-disabled {
    opacity: 0.5;
}

/**************
    SPINNER
**************/
.fr-webreport-spinner {
    height: 100%;
    width: 100%;
    position: absolute;
    background-color: rgba(255, 255, 255, 0.7);
    z-index: 10;
}

.fr-webreport-spinner-img {
    width: 90px;
    height: 90px;
    left: calc(50% - 50px);
    top: calc(50% - 50px);
    position: absolute;
    animation: webreport-spin 1s infinite steps(8);
    opacity: 0.5;
}

@keyFrames webreport-spin {
    from {
        -webkit-transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(360deg);
    }
}

/******************
    Report styles
******************/
.fr-webreport-input {
    outline: none;
    border: none;
    resize: none;
}