  @charset "utf-8"; @import url(https://fonts.googleapis.com/css?family=Lato:400,700,900,900italic,700italic,400italic); @font-face {
    font-family: 'webfontLTCN';
    src: url('./fonts/webfont_lt_cn.eot');
    src: local('â˜º'),url('./fonts/webfont_lt_cn.ttf') format('truetype'),url('./fonts/webfont_lt_cn.woff') format('woff'),url('./fonts/webfont_lt_cn.svg') format('svg');
    font-weight: normal;
    font-style: normal
  }
  
  @font-face {
    font-family: 'webfontMDCN';
    src: url('./fonts/webfont_md_cn.eot');
    src: local('â˜º'),url('./fonts/webfont_md_cn.ttf') format('truetype'),url('./fonts/webfont_md_cn.woff') format('woff'),url('./fonts/webfont_md_cn.svg') format('svg');
    font-weight: normal;
    font-style: normal;
  }
  
  @font-face {
    font-family: 'webfontCN';
    src: url('./fonts/webfont_cn.eot');
    src: local('â˜º'),url('./fonts/webfont_cn.woff') format('woff'),url('./fonts/webfont_cn.ttf') format('truetype'),url('./fonts/webfont_cn.svg') format('svg');
    font-weight: normal;
    font-style: normal;
  }
  
  @font-face {
    font-family: 'webfontBD';
    src: url('./fonts/webfont_bd.eot');
    src: local('â˜º'),url('./fonts/webfont_bd.ttf') format('truetype'),url('./fonts/webfont_bd.woff') format('woff'),url('./fonts/webfont_bd.svg') format('svg');
    font-weight: normal;
    font-style: normal
  }

  body {
    display: flex;
	flex-direction: column;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 10vh;
    overflow: hidden;
    border: 0;
    padding: 0;
    margin: 0;
    width: 100vw;
    height: 100vh;
}

td {
    text-align: right;
    width: 50vh;
}

div.panel {
    position: relative;
    display: flex;
    flex-direction: column;
    /* width: 100%; */
    flex-grow: 1;
    /* width: calc(100% - 4vh);  */
    background-color: #c0c0c0; 
    border-radius: 0 0 4vh 4vh; 
    padding: 2vh;
    margin: 0 auto;
}

div#plugin {
    margin: 0 auto;
    /* width: calc(100% - 8vh);  */
    padding-right: 2vh;
    font-size: 4vh;
    text-align: center;
}

div.source {
    width: calc(100% - 4vh); 
    padding: 2vh;
    background-color: #303030;
    top: 0;
    height: 20vh;
    border-radius: 3vh 3vh 0 0;
    flex-grow: 0;
}

textarea#input {
    width: calc(100% - 4vh); 
    height: calc(100% - 4vh);
    overflow: auto;
    border-radius: 2vh;
    padding: 2vh;
    padding-left: 4vh;
    padding-right: 0px;
    border: none;
    margin: 0;
    resize: none;
    font-size: 20px;
    tab-size: 3;
}

textarea#output {
    position: absolute;
    left: 0px;
    top: 0px;
    width: calc(100% - 6vh); 
    height: calc(100% - 6vh);
    overflow: auto;
    border-radius: 0 0 10px 10px;
    padding-top: 30px;
    padding-left: 30px;
    padding-right: 0px;
    padding-bottom: 0px;
    border: none;
    margin: 0;
    background: lightsalmon;
    font-size: 20px;
}

div#code {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

input#compile {
    position: relative;
    left: calc(100% - 34vh);
    top: -20vh;
    width: 32vh;
    height: calc(100% - 4vh);
    align-items: top;
    background-color: #ff6600;
    font-size: 10vh;
    font-family: 'webfontMDCN';
    color: white;
    border : none;
    padding: 0;
    margin: 0;
    border-radius: 2vh;
    border-color: white;
}

input#compile:disabled {
    filter: saturate(0%) brightness(150%);
}

td.control {
    line-height: 10vh;
    width: 10%;
    margin-left: -4vh;
    padding-left: calc(10% / 2 - 4vh);
}

div#console, div#progress {
    display: none;
} 

td.header {
    text-align: center;
    font-weight: bold;
}

div#progress {
    position: absolute;
    height: 55px;
    top: 100px;
    background-color: transparent;
    z-index: 1;
}

progress {
    width: 98vw;
    height: 100%;
    border: none;
    border-radius: 10px;
    border:solid 2px #808080;
}

progress::-webkit-progress-bar {
    background-color: #C0C0C0; /* Background (empty part) */
    border-radius: 8px;
}

progress::-webkit-progress-value {
    background-color: #ff6600; /* Progress fill color */
    border-radius: 5px 0 0 5px;
}

progress::-moz-progress-bar {
    background-color: #ff6600; /* Firefox progress fill color */
    border-radius: 5px 0 0 5px;
}

div#progress-label {
    position: absolute;
    left: 0;
    right: 0;
    top: 25px;
    bottom: 0;
    font-size: 20px;
    color: #303030;
    text-align: center;
    font-family: 'Lato', Arial, Helvetica, sans-serif;
}

div#info {
    display: flex;
    text-align: center;
    visibility: hidden;
}

div#info-text {
    margin: auto;
    height: 65px;
    color: #303030;
    font-family: 'Lato', Arial, Helvetica, sans-serif;
}

.p2 path {
    stroke: none;
    fill: #ff6600;
    stroke-weight: .1;
}

.p2 path:first-child {
    fill: #303030;
}

.p2 rect {
    fill: #ffffff;
}

#table {
    width: 99%;
    user-select: none;
    /* padding-top: 5px; */
    margin: 0;
    margin-right: 1vh;
    height: auto;
    padding: 1vh;
}

div#plot {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    background-color: black;
    border-radius: 0 0 2vh 2vh;
    margin-top: 2vh;
    padding: 2vh;
}

.preset2 #preset2 {
    width: 2vh;
    height: 2vh;
    font-size: 10vh;
}

canvas#graphCanvas {
    max-width: 100%;
    max-height: 100%;
}
