/* Результаты теста*/
.result {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    height: 100vmin;
}
.section {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100vmin;
}
.section.info {
    font-size: 2vmin;
    border: #000 solid 1px;
    border-radius: 1vmin;
    margin-top: 6vmin;
    margin-bottom: 1vmin;
    width: 100vmin;
    padding: 0.5vmin 1vmin;
}
.graph-container {
    height: 20vmin;
    width: 32vmin;
    margin: 0vmin 0vmin 0vmin 0vmin;
    border: #000 solid 1px;
    border-radius: 0.5vmin;
}
.test-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100vmin;
}
.text-report {
    font-size: 2.5vmin;
    text-align: justify;
    text-indent: 2.5vmin;
    user-select: all;
    padding: 1vmin;
}
.text-report p{
    padding-top: 2vmin;
}
.text-report span{
    color: rgb(135, 0, 198);
}
/*************************************** Тест **********************************************/
.result .test-graph {
    display: block;
    position: relative;
    height: 15vmin;
    overflow: hidden;
    width: 100vmin;
    margin-top: 1vmin;
    margin-bottom: 1vmin;
    border: #000 solid 1px;
    border-radius: 0.5vmin;
}
.result h3.report-header {
    z-index: 10;
    font-size: 2vmin;
    margin-bottom: -1vmin;
    border-radius: 1vmin;
    padding: 0.1vmin 0.6vmin;
}
.result .test-graph .top-graph, .result .test-graph .bot-graph {
    width: 100%;
    height: 50%;
    text-align: right;
    position: relative;
    
}
.result .test-graph .top-graph {
    border-bottom: solid 1px rgb(0, 0, 0);
}
.result .test-graph .left-graph {
    display: block;
    position: relative;
    float: left;
    width: 15%;
    height: 100%;
    border-right: solid 1px rgb(0, 0, 0);
    box-sizing:border-box;
    -moz-box-sizing:border-box;
    -webkit-box-sizing:border-box;
}
.result .test-graph .right-graph {
    float: left;
    display: block;
    width: 85%;
    height: 100%;
    position: relative;
}

.result .test-graph .line {
    justify-content: flex-start;
    font-size: 1.5vmin;
    padding-right: 1vmin;
    float: left;
    width: 100%;
    overflow: hidden;
    height: 33.33%;
    border-bottom: solid 1px rgb(0, 0, 0);
    vertical-align: middle;
}
.result .test-graph .graph {
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    overflow:hidden;
    float:left;
    height: 100%;
}
.test-graph .cardwrap {
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    height: 100%;
}
.test-graph .cardwrap.divp {
    border-left: solid 2px rgb(0, 200, 0);
}
.test-graph .cardwrap.divd {
    border-left: solid 2px rgb(255, 111, 0);
}
.test-graph .card.time {
    width: 1.5vmin;
    text-align: center;
    background: rgb(146, 146, 255);
    border-top: solid 1px rgb(0, 0, 0);
    border-left: solid 1px rgb(0, 0, 0);
    border-right: solid 1px rgb(0, 0, 0);
    cursor: pointer;
}
.test-graph .card.time:hover{ background: #FFF; }
.test-graph .card.max { background: #F22; border:solid 1px #FCC; }
.test-graph .card {
    position:relative;
    margin: 0 1px;
    font-size: 1.8vmin;
    line-height: 1.8vmin;
    text-align: center;
    float: left;
    padding: 0;
    width: 1.5vmin;
    height: 95%;
    }
.test-graph .card.in{
    text-align: center;
    box-sizing:border-box;
    -moz-box-sizing:border-box;
    -webkit-box-sizing:border-box;
    border:solid 1px rgb(0, 0, 0);
    border-radius: 0.3vmin;
    cursor: pointer;
    background: rgb(255, 247, 195);
}
.test-graph .card.a{
    color: rgb(255, 0, 0);
}
.test-graph .card.b{
    color: #000;
}
.test-graph .card.a:hover {
    background: #888;
}
.test-graph .card.b:hover {
    background: #DDD;
}
.test-graph .canv {
    width: 100%;
    height: 100%;
}
.test-graph .card.false{
    background: rgb(255, 202, 202);
    border:solid 1px rgb(150, 0, 0);
}
.test-graph .card.true{
    background: rgb(210, 255, 206);
    border:solid 1px rgb(0, 150, 0);
}
/************************************* Параметры *******************************************/
.graph-container.params {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: space-between;
}
.graph-container.params .line{
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: space-between;
    border-bottom: solid #000 1px;
    font-size: 2vmin;
}
.graph-container.params .left-line{
    padding: 0.3vmin;
    border-right: solid #000 1px;
    width: 80%;
    text-align: right;
    font-size: 1.4vmin;
}
.graph-container.params .right-line{
    padding: 0.3vmin;
    font-size: 1.4vmin;
}
.graph-container.params .right-line .indicator {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    padding: 0.2vmin;
    height: 1.7vmin;
    font-size: 1vmin;
    width: 5vmin;
    margin-right: 0.4vmin;
    border: #000 solid 1px;
    border-radius: 0.3vmin;
    background-color: rgb(236, 236, 236);
}

.graph-container.params .right-line .indicator .cell {
    border: rgb(255, 255, 255) solid 1px;
    height: 100%;
    width: 100%;
}

.indicator .cell.good {
    background-color: rgb(0, 188, 88);
}
.indicator.good {
    color: rgb(9, 112, 0);
}
.indicator.average {
    color: rgb(112, 73, 0);
}
.indicator.bad {
    color: rgb(112, 0, 0);
}
.indicator .cell.average {
    background-color: rgb(255, 221, 0);
}
.indicator .cell.bad {
    background-color: rgb(255, 68, 0);
}
.indicator .cell.empty {
    background: none;
}   
canvas {
    width: 30vmin;
}

/*************************************** Отчет *********************************************/
.radar {
    padding-top: 10px;
    height: 600px;
    width: 100%;
    float: left;
    display:block;
    border:solid 1px #AAA;
}

.radar-legend {
    float: left;
    display:block;
    padding-top: 20px;
    padding-left: 20px;
}
.hided {
    color: #DDD;
}
.bar {
    border:solid 1px #AAA;
    margin-right: 20px;
    float: left;
    display: block;

}
.cont_errors {
    display: block;
}
.line-block {
    border:solid 1px #AAA;
}
.no-break {
    overflow: auto;
}
.no-border {
    border-bottom: none !important; 
}