@charset "ISO-8859-1";
body {
  font-family: Verdana, Helvetica Neue, Arial, sans-serif;
  font-size: 11px;
  color: #444;
}

table {
  border: 1px solid #3d85c6;
  border-radius: 1px;
}

thead {
	background-color: #3d85c6;
}

th {
  background-color: #3d85c6;
  color: #fff;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

th label {
	cursor: pointer;
}

td {
  border-bottom: 1px solid #ddd;
}

tbody tr:hover {
	background-color: #ffff99;
}

th, td {
  padding: 5px 5px;
}

th.active {
  color: yellow;
}

th label.active {
  color: yellow;
}

th.active .arrow {
  opacity: 1;
}

.arrow {
  display: inline-block;
  vertical-align: middle;
  width: 0;
  height: 0;
  margin-left: 5px;
  opacity: 0.66;
}

.arrow.asc {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-bottom: 4px solid #fff;
}

.arrow.dsc {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid #fff;
}

.tooltip {
    position: relative;
    display: inline-block;
    border-bottom: 2px dotted red;
}

.tooltip .tooltiptext {
    visibility: hidden;
    width: 120px;
    background-color: grey;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px 0;
    position: absolute;
    z-index: 1;
}

.tooltip:hover .tooltiptext {
    visibility: visible;
}

.switch {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 20px;
}

.switch input {display:none;}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 4px;
  bottom: 2px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .slider {
  background-color: #3d85c6;
}

input:focus + .slider {
  box-shadow: 0 0 1px #3d85c6;
}

input:checked + .slider:before {
  -webkit-transform: translateX(20px);
  -ms-transform: translateX(20px);
  transform: translateX(20px);
}

.slider.round {
  border-radius: 20px;
}

.slider.round:before {
  border-radius: 50%;
}


/* Accordion */
.accordion {
	font-family: Verdana, Helvetica Neue, Arial, sans-serif;
	font-size: 11px;
	background-color: rgba(61, 133, 200,  .30);
    color: black;
    cursor: pointer;
    padding: 5px 10px;
    width: 100%;
    text-align: left;
    border: none;
    outline: none;
    transition: 0.4s;
    margin-bottom: 5px;
}

.accordion:after {
    content: '\02795';
    color: white;
    font-weight: bold;
    float: right;
    margin-left: 10px;
}

.accordion.active, .accordion:hover {
	color: white;
	font-weight: bold;
    background-color: rgba(61, 133, 200,  1);
}

.accordion.active:after {
    content: "\02796";
}

accordion-panel {
    padding: 0 18px;
    background-color: white;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}

.info {
    margin-bottom: 10px;
    padding: 1px 10px;
	background-color: white;
    border-left: 4px solid rgba(61, 133, 200, 1);
}


/* Tabs */
.tab {
    overflow: hidden;
    border: 1px solid #ccc;
    background-color: #f1f1f1;
    margin-bottom: 20px;
}

.tab button {
    background-color: inherit;
    float: left;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 14px 16px;
    transition: 0.3s;
    font-size: 15px;
}

.tab button:hover {
    background-color: rgba(61, 133, 200, .30);
}

.tab button.active {
    background-color: rgba(61, 133, 200, 1);
    color: white;
    font-weight: bold;
}

.tabcontent {
    display: none;
    padding: 6px 12px;
    border: 1px solid #ccc;
    border-top: none;
}


/* Drop-down Button */
.dropbtn {
    background-color: rgba(61, 133, 200, .5);
	font-family: Verdana, Helvetica Neue, Arial, sans-serif;
	font-size: 11px;
    color: black;
    border: none;
    cursor: pointer;
    padding: 5px 20px;
}

.dropbtn:hover, .dropbtn:focus {
    background-color: rgba(61, 133, 200, 1);
    color: white;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: rgba(255, 255, 255, 1);
    min-width: 160px;
    box-shadow: 0px 8px 8px 0px rgba(0, 0, 0, .4);
    z-index: 1;
    padding: 5px 5px;
}

.dropdown-content label {
	color: black;
	font-weight: normal;	
}

.show {
	display:block;
}

/* Click-able Label */
.clicklabel {
	cursor: pointer;
}