@import url('//fonts.googleapis.com/css?family=Open+Sans:400italic,400,700');
@import url('//fonts.googleapis.com/css?family=Roboto:100');
@import url('normalize.css');
@import url('font-awesome.min.css');
@import url('skeleton.css');

body {
    font-size: 15px;
    background-color: black;
    color: #ccffff;
}

h1,h2,h3,h4 {
    font-family: 'Roboto';
    font-weight: 100;
}

div.container {
    max-width: 1280px;
}

table tbody:nth-child(odd) tr td {
    background-color: #2c5e75;
    color: #ccffff;
    border-bottom: 1px solid black; /* #91f3f4; */
}

table tbody:nth-child(even) tr td {
    background-color: #4e8093;
    color: #ccffff;
    border-bottom: 1px solid black; /* #91f3f4;*/
}

th:first-child, td:first-child {
    padding-left: 6px;
}
th, td {
    padding: 4px;
    text-align: left;
}

td {
    /*border-left: 1px solid #e1e1e1;
    border-right: 1px solid #e1e1e1;*/
    transition: background-color 0.3s, border 0.3s, color 0.3s;

}

td > span {
    display: inline-block;
    cursor: pointer;
}

table tr td:nth-child(5),
table tr td:nth-child(6),
table tr td:nth-child(7),
table tr td:nth-child(8),
table tr td:nth-child(9),
table tr td:nth-child(10) {
    text-align: center;
    width: 50px;
}

th {
    font-size: 0.7em;
    background-color: #333;
    color: #ccffff;
    border-bottom: 1px solid black; /* #91f3f4; */
}

tr.focus > td {
    font-weight: bold;
}

tr.focus > td:nth-child(1),
tr.focus > td:nth-child(2) {
    font-weight: normal;
}

/* completed stuff */
table tbody tr.pre-completed td:not(:first-child) {
    /* border-bottom: 1px solid #999999; /* #ff9833 */
}

table tbody tr:first-child.pre-completed td:first-child.skipped {
    border-bottom: 1px solid black;
}

table tbody  tr.completed td:not(:first-child) {
    background-color: #494949; /*#753d1b;*/
    color: #999; /*#fe9833;*/
    /* border-bottom: 1px solid #999999; /* #ff9833; */
}
/* end completed stuff */

table tbody tr td.skipped {
    background-color: #333;
    border-bottom: 1px solid #111;
}

td > .fa {
    font-size: 0.8em;
}
table tbody:last-child tr:last-child td {
    border: 0px;
}
table tbody:last-child tr:last-child td:first-child {
    border-radius: 0 0 0 15px;
}
table tbody:last-child tr:last-child td:last-child {
    border-radius: 0 0 15px 0;
}

table tbody tr:hover > td:not(:first-child) {
    background-color: #753d1b;
    color: #fe9833;
    /* border-bottom: 1px solid #ff9833; */
    
}

div.map-container {
     width: 300px; 
     height: 335px;
}

.tooltipster-sidetip.tooltipster-punk .tooltipster-content {
    background-color: #753d1b;
    /*border: 2px solid #4E8093;*/
    border-radius: 5px 5px 0 0;
    padding: 5px;
}

.tooltipster-sidetip.tooltipster-punk .tooltipster-box {
    border-bottom: 3px solid #fe9833;
}
.tooltipster-sidetip.tooltipster-punk.tooltipster-top .tooltipster-arrow-border {
    border-top-color: #fe9833;
}
.tooltipster-sidetip.tooltipster-punk.tooltipster-right .tooltipster-arrow-border {
    border-right-color: #fe9833;
}
.tooltipster-sidetip.tooltipster-punk.tooltipster-left .tooltipster-arrow-border {
    border-left-color: #fe9833;
}
.tooltipster-sidetip.tooltipster-punk.tooltipster-bottom .tooltipster-arrow-border {
    border-bottom-color: #fe9833;
}
/* stats begin here */

div.stats {
    background-color: #2c5e75;
    color: #ccffff;
    border-radius: 5px;
    margin-bottom: 1em;
    font-size: 0.9em;
}

div.stats div.data {
    overflow: auto;
    width: 100%;
}

div.stats span.title {
    font-weight: bold;
    display: none;
    margin: 1em 0 1em 1em;
}

div.stats ul {
    list-style-type: none;
    margin: 1em 0 1em 0;
    padding: 0;
    text-align: center;
}

div.stats ul > li {
    display: inline-block;
    margin: 0;
}

div.stats ul > li > span {
    font-weight: bold;
}

div.stats ul > li:after {
    content: " /";
}

div.stats ul > li:last-child:after {
    content: "";
}

div.header.sticky {
    display: none;
}

div.header.sticky + div {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  border-radius: 0;
  box-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

div.header.sticky + div span.title {
    display: inline-block;
}
div.header.sticky + div span.title img {
    height: 20px; vertical-align: middle
}

div.header.sticky + div div.title {
    float: left;
    width: 25%;
}
div.header.sticky + div div.data {
    float: left;
    width: 50%;
}

@media only screen and (max-width:1400px)  { 
    div.header.sticky + div div.data {
        width: 75%;
    }
}

div.header.sticky + div + div {
    margin-top: 132px;
}