
/*gpuperformance.be 2017*/

/* ######################### GENERAL STYLE ################################ */
body{
  font-family: 'Lato', sans-serif;
  background-image: url("../images/background/grey.png"); /* fallback */
  background:
  linear-gradient(
    rgba(60,179,113, 0.10),
    rgba(60,179,113, 0.10)
    ), url("../images/background/grey.png");
    /* Background pattern from subtlepatterns.com */
    /*font-size: 14px;*/
  }

  h1,
  header,
  header a,
  header a:hover,
  footer a,
  footer a:hover,
  footer{
    color:white;
  }

  header{
    border-radius: 5px;
    background-color: #0D3640;
  }

  .mainscreen {
    min-height:900px;
    clear: both;
    position: relative;
    border-top: 2px solid #137971;
    border-right: 2px solid #137971;
    border-left: 2px solid #137971;
    border-radius: 5px;
    padding: 0 5px;
  }

  .visitors{
    position:absolute;
    bottom:0;
  }

  .footer {
    padding : 5px 0;
    border-radius: 0 0 5px 5px;
    font-size: 14px;
    background: #145362;
  }

  h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 35px;
    border-radius: 5px;
    line-height: 1.5em;
    text-transform: uppercase;
    font-weight: bold;
    text-align: center;
    clear: both;
    background: #175F70;
  }

  h3{
    text-align: center;
  }

  h3 span{
    background-color: #175F70;
    border-top-left-radius: 15px;
    border-bottom-right-radius: 15px;
    border: 4px solid #27A0BC;
    color: white;
    padding:0.2em;
  }

  h4 {
    text-decoration: underline;
  }

  p{
    border-radius: 5px;
    line-height: 1.6;
  }

  .gris {
    background-color: #f1f1f1;
    border-radius: 5px;
    border: 1px solid #939696;
    padding: 6.6px;
  }
  .contributors li{
    display: inline-block;
    font-weight: bold;
  }

  a:link, a:visited {
    text-decoration: none;
  }

  p,
  h1,
  div.panel-heading,
  .unselectable {
    cursor: default;
    -moz-user-select: -moz-none;
    -khtml-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }

  .separation {
    border-width: 1px 0 0 ;
    border-style: solid none none;
    border-color: #137971;
  }

  body p:empty {
    display: none;
  }

  /*Logo WebCL*/
  .webcl_logo {
    margin-right:9%;
    margin-top: -13px;
  }

  /*Custom button*/
  .btn-custom {
    background-color: #27A0BC;
    border-color: #27A0BC;
    color:white;
  }
  .btn-custom:hover,
  .btn-custom:focus,
  .btn-custom:active,
  .btn-custom.active {
    color: white;
    background-color: #124956;
    border-color: #124956;
  }
  .btn-custom.disabled:hover,
  .btn-custom.disabled:focus,
  .btn-custom.disabled:active,
  .btn-custom.disabled.active,
  .btn-custom[disabled]:hover,
  .btn-custom[disabled]:focus,
  .btn-custom[disabled]:active,
  .btn-custom[disabled].active,
  fieldset[disabled] .btn-custom:hover,
  fieldset[disabled] .btn-custom:focus,
  fieldset[disabled] .btn-custom:active,
  fieldset[disabled] .btn-custom.active {
    background-color: #124956;
    border-color: #124956;
    color: white;
  }

  /* ############################ OTHERS ############################*/

  /*Bootstrap-select fix*/
  .bootstrap-select > .dropdown-toggle{
    z-index: 0;
  }

  /* DataTable styles + */
  .dataTable td, .dataTable th {
    /*text-align: center;*/
  }
  .dataTables_wrapper label {
    /*padding: 4px;
    border-radius: 5px;
    background-color: white;*/
  }

  dl>dd{
    margin-left:1em;
  }

  code{
    padding: 2px 4px;
    font-size: 90%;
    color: #fff;
    background-color: #333;
    border-radius: 3px;
    -webkit-box-shadow: inset 0 -1px 0 rgba(0,0,0,.25);
    box-shadow: inset 0 -1px 0 rgba(0,0,0,.25);
  }

  /* Loader  */
  .loader {
    border: 16px solid #f3f3f3; /* Light grey */
    border-top: 16px solid #3597AE;
    border-bottom: 16px solid #3597AE;
    border-radius: 50%;
    width: 120px;
    height: 120px;
    animation: spin 2s linear infinite;
    text-align: center;
  }

  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }
  .checked-expert{
    color: black;
    font-weight: bold;
  }
  .overlay-expert{
    top:15px;
    right:15px;
    position:absolute;
  }
  .overlay-bc{
    top:15px;
    left:15px;
    position:absolute;
  }
  .overlay-bc a,.overlay-bc{
    color:white;
  }


  /* ######################### NAVIGATION MENU STYLE ############################ */

  .cssmenu ul {
    list-style: none;
    /*cursor: pointer;*/
  }
  /*TRIANGLE*/
  .cssmenu > ul > li:hover:after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    position: absolute;
    left: 50%;
    bottom: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid #145362;
    margin-left: -10px;
  }

  .cssmenu > ul > li:hover > a ,.cssmenu>ul>li:hover>span {
    background: #3797AE;
  }

  /*SubMenu*/
  .cssmenu .has-sub:hover > ul {
    display: block;
    z-index: 1;
  }
  .cssmenu .has-sub ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0%;
  }
  .cssmenu .has-sub ul li a {
    background: #145362;
    font-size: 14px;
    line-height: 25px;
    text-align: center;
  }
  .cssmenu a:hover, .cssmenu .has-sub a:hover {
    background: #3597AE;
  }
  .cssmenu .has-sub ul li:last-child a{
    border-radius: 0 0 5px 5px;
  }
  .cssmenu>ul>li:first-child{
    margin-left: -1.7%;
  }
  .cssmenu>ul>li:first-child a:hover{
    border-radius: 5px 0 0 5px;
  }

  #expert_btn{
    padding-bottom: 2px;
  }
  /* ######################### HOME PAGE #################*/
  .index-panel-actions{
    background-color: #13394C;
    color: white;
  }
  /* ######################### DATABASE PAGE #################*/
  #gpudatabase tr {
    cursor : pointer;
  }
  #expdatabase thead tr:first-child th:first-child{
    vertical-align: middle;
  }
  .bench-selection tr td{
    padding-right: 7px;
  }

  /*mb buttons*/
  .ck-button {
    display: inline;
    color:white;
  }
  .ck-button label {
    width:9em;
    cursor: pointer;
  }
  .ck-button label span {
    text-align:center;
    display:block;
    border-radius:4px;
  }
  .ck-button label input {
    display: none;
    position: relative;
    overflow: hidden;
  }
  .ck-button input +span{
    background-color:#911;
  }
  .ck-button input:checked + span {
    background-color:#2CBA3F;
  }
  .ck-button input:not(:checked){
    display: none;
  }
  /* ######################### OVERVIEW PAGE ############################ */
  .btn-default.bs-placeholder span{
    color: black;
  }
  #perfList li,#errorList li{
    margin:2.5px;
  }

  /* ######################### ESTIMATION PAGE ############################ */

  button[data-toggle="collapse"]{
    float:right;
  }
  .transf
  {
    transform:rotateX(180deg);
  }
  textarea {
    resize: none;
  }
  .panel-primary{
    border-color: #155362;
  }
  .panel-primary>.panel-heading,
  button[data-toggle="collapse"],
  button[data-toggle="collapse"]:active,
  button[data-toggle="collapse"]:focus,
  button[data-toggle="collapse"]:hover,
  button[data-toggle="collapse"]:visited,
  button[data-toggle="collapse"]:active:focus
  {
    background-color: #145362;
    color: white;
  }
  .updated{
    border-radius: 6px;
    color:white;
    background-color: #5cb85c !important;
    border: 1px solid #1B7C1B;
  }
  .error{
    border-radius: 6px;
    color:white;
    background-color: #FF0000 !important;
    border: 1px solid #CC0000;
  }
  .rmbtn{
    float: right;
  }
  .rmGraph>div{
    clear: both;
  }
  output{
    border-radius: 5px;
    border: 1px solid #939696;
    padding: 5px;
  }
  .output_graph>*>*>*>output{
    margin-top: 10px;
  }
  output:empty{
    padding:14px;
  }
  .btn-primary.bs-placeholder span{
    color: white;
  }
  p[class^='bg-']{
    border : 1px solid #145362;
  }

  /* ######################### MICROBENCHMARK PAGE ################################ */
  /*
  .bench_param_table{
  text-align: center;
  color: white;
  background-color: #137670;
  border-radius: 5px;
  padding: 5px;
}
.div_chart {
visibility: hidden;
margin: 0 10px;
min-height: 300px;
}
.table-results, .table-results>th{
text-align:center;
color: black;
}
.table-results>th{
background-color:#137670;
}
.table-results>td>output{
padding: 0;
color: black;
}
.table-results > tbody > tr:nth-child(2n) > td {
background-color: #00988D;
}*/
