body {
    padding-top: 70px;
    padding-bottom: 50px;
}

tr.sticky th {
    z-index: 1;
    position: sticky; 
    top: 0;
    left: 0;
    box-shadow: 0 2px 2px -1px rgba(0, 0, 0, 0.4);
}
tr.sticky {
    position: relative; 
    top: 0;
    box-shadow: 0 2px 2px -1px rgba(0, 0, 0, 0.4);
}
td {
    vertical-align: middle;
}

.flag {
    padding: 0px 5px;
    text-align: center;
}

.sInContainer {
    margin: 10px;
    padding: 10px;
    border: 1px solid black;
    position: relative;
}

.sOuContainer {
    margin: 5px;
    padding: 5px;
    border: none;
    position: relative;
}

.sLabel {
    position: absolute;
    background: white;
    top: -15px;
    left: 2;
    text-align: center;
    padding: 2px;
}

.sButton {
    border-radius: 5px;
    border: none;
    padding: 5px 10px 5px 10px;
    margin: 5px;
    color: white;
    background: blue;
}

.sInput {
    padding: 0px 2px 0px 2px;
    border: 1px solid gray;
    margin: 4px;
    box-sizing: border-box;
    background: white;
}

.smallInput {
    padding: 0px 2px 0px 2px;
    border: 1px solid gray;
    margin: 4px;
    box-sizing: border-box;
    background: white;
    width: 80px
}

.fullWidth {
    width: 100%;
}

.centerElement {
    text-align: center;
}

.sTable {
  font-family: arial, sans-serif;
  border-collapse: collapse;
}

.sTd, .sTh {
  border: 1px solid #dddddd;
  text-align: left;
  padding: 8px;
  word-wrap: break-word;
}

.sTr:nth-child(even) {
  background-color: #dddddd;
}

.fA {
    color: black;
}

* {box-sizing: border-box}
body {font-family: "Lato", sans-serif;}

/* Style the tab */
.tab {
  float: left;
  border: 1px solid #ccc;
  background-color: #f1f1f1;
  width: 10%;
  height: 300px;
}

/* Style the buttons inside the tab */
.tab button {
  display: block;
  background-color: inherit;
  color: black;
  padding: 22px 16px;
  width: 100%;
  border: none;
  outline: none;
  text-align: left;
  cursor: pointer;
  font-size: 17px;
}

/* Change background color of buttons on hover */
.tab button:hover {
  background-color: #ddd;
}

/* Create an active/current "tab button" class */
.tab button.active {
  background-color: #ccc;
}

/* Style the tab content */
.tabcontent {
  float: left;
  padding: 0px 12px;
  border: 1px solid #ccc;
  width: 90%;
  border-left: none;
  height: 300px;
  display: none;
}

/* Clear floats after the tab */
.oclearfix::after {
  content: "";
  clear: both;
  display: table;
}