* {
  margin: 0;
  padding: 0;
}

html,
body {
  /* font-family: monospace; */
  font: 14px/1.4 Georgia, Serif;
  font-family: sans-serif;
  margin: 0px;
  /* overflow-x: hidden; */
}

#wrapper {
  overflow-x: hidden;
  font-size: 12px;
  font-size: 0.9em;
}

.hidden {
  display: none !important;
}

.visibility-visible {
  visibility: visible !important;
}

img.information{
  height: 15px;
  margin: 0 0 0 5px;
  cursor:pointer;
}

.information-tooltip {
  position: absolute;
  z-index: 10;
  color: white;
  padding: 8px;
  background-color: rgba(0, 0, 0, 0.75);
  border-radius: 6px;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  font-stretch: normal;
  font-size: 12px;
  line-height: normal;
  font-family: sans-serif;
  text-align: center;
  width: 300px;
  /* height: 135px; */
}
#header {
  width: 100%;
  min-height: 50px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  /* display: flex;
  justify-content: flex-start;
  align-items: center; */
  background: #000;
  margin: 0;
  padding: 0;
  z-index: 9;
}

#footer {
  width: 100%;
  min-height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 auto;
  text-align: center;
  background: rgb(255, 59, 63);
  font-size: 16px;
  color: #fff;
  padding: 5px 10px;
  z-index: 9;
}

/* .footer-fixed{
  position: fixed;
  bottom:0;
  left:0;
  right:0;
}
.footer-relative{
  position: relative !important;
} */

#footer p {
  margin: 0;
}

#container {
  margin-top: 78px;
  position: relative;
}

#loading-wrapper {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  top: 0px;
  /* width: 100vw; */
  height: 100vh;
  left: 0;
  right: 0;
  background: #fff;
  z-index: 99;
  overflow: hidden;
}

/* http://tobiasahlin.com/spinkit/ */

.sk-circle {
  margin: 100px auto;
  width: 40px;
  height: 40px;
  position: relative;
  margin-top: 0px;
}

.sk-circle .sk-child {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

.sk-circle .sk-child:before {
  content: '';
  display: block;
  margin: 0 auto;
  width: 15%;
  height: 15%;
  background-color: #333;
  border-radius: 100%;
  -webkit-animation: sk-circleBounceDelay 1.2s infinite ease-in-out both;
  animation: sk-circleBounceDelay 1.2s infinite ease-in-out both;
}

.sk-circle .sk-circle2 {
  -webkit-transform: rotate(30deg);
  transform: rotate(30deg);
}

.sk-circle .sk-circle3 {
  -webkit-transform: rotate(60deg);
  transform: rotate(60deg);
}

.sk-circle .sk-circle4 {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

.sk-circle .sk-circle5 {
  -webkit-transform: rotate(120deg);
  transform: rotate(120deg);
}

.sk-circle .sk-circle6 {
  -webkit-transform: rotate(150deg);
  transform: rotate(150deg);
}

.sk-circle .sk-circle7 {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.sk-circle .sk-circle8 {
  -webkit-transform: rotate(210deg);
  transform: rotate(210deg);
}

.sk-circle .sk-circle9 {
  -webkit-transform: rotate(240deg);
  transform: rotate(240deg);
}

.sk-circle .sk-circle10 {
  -webkit-transform: rotate(270deg);
  transform: rotate(270deg);
}

.sk-circle .sk-circle11 {
  -webkit-transform: rotate(300deg);
  transform: rotate(300deg);
}

.sk-circle .sk-circle12 {
  -webkit-transform: rotate(330deg);
  transform: rotate(330deg);
}

.sk-circle .sk-circle2:before {
  -webkit-animation-delay: -1.1s;
  animation-delay: -1.1s;
}

.sk-circle .sk-circle3:before {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}

.sk-circle .sk-circle4:before {
  -webkit-animation-delay: -0.9s;
  animation-delay: -0.9s;
}

.sk-circle .sk-circle5:before {
  -webkit-animation-delay: -0.8s;
  animation-delay: -0.8s;
}

.sk-circle .sk-circle6:before {
  -webkit-animation-delay: -0.7s;
  animation-delay: -0.7s;
}

.sk-circle .sk-circle7:before {
  -webkit-animation-delay: -0.6s;
  animation-delay: -0.6s;
}

.sk-circle .sk-circle8:before {
  -webkit-animation-delay: -0.5s;
  animation-delay: -0.5s;
}

.sk-circle .sk-circle9:before {
  -webkit-animation-delay: -0.4s;
  animation-delay: -0.4s;
}

.sk-circle .sk-circle10:before {
  -webkit-animation-delay: -0.3s;
  animation-delay: -0.3s;
}

.sk-circle .sk-circle11:before {
  -webkit-animation-delay: -0.2s;
  animation-delay: -0.2s;
}

.sk-circle .sk-circle12:before {
  -webkit-animation-delay: -0.1s;
  animation-delay: -0.1s;
}

@-webkit-keyframes sk-circleBounceDelay {
  0%,
  80%,
  100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  40% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes sk-circleBounceDelay {
  0%,
  80%,
  100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  40% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

/* navigation */

#navigation {
  width: 100%;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  z-index: 9;
  min-height: 50px;
  /* height: 50px; */
}

#navigation .brand {
  color: #fff;
  font-size: 18px;
  margin: 5px 10px 5px 10px;
  padding: 0;
  cursor: default;
}

#navigation .logo-wrapper {
  margin: 5px 20px 5px 10px;
  padding-top: 5px;
}

#navigation .logo {
  height: 25px;
  width: 25px;
}

#navigation .link-to {
  margin: 5px 20px 5px 10px;
  font-size: 18px;
  color: #fff;
  text-decoration: none;
  /* border-bottom: solid 1.5px transparent; */
  border: 1.5px solid transparent;
  display: inline;
  padding-bottom: 2px;
  text-decoration: none;
  /* padding: 0; */
  padding: 2px 10px;
}

#navigation .link-to:hover,
#navigation .link-to-active {
  /* border-bottom: solid 1.5px #ffffff; */
  border: 1.5px solid #ffffff;
  /* transition: all 0.5s ease; */
}

/* sub-navigation */

#sub-navigation {
  background: rgb(175, 171, 171);
  width: 100%;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  z-index: 3;
  min-height: 33px;;
  padding: 0 25px;
}

#sub-navigation p {
  margin: 5px 40px 5px 10px;
}

#sub-navigation .link-to {
  padding: 0;
  font-size: 14px;
  color: #000;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  display: inline;
  padding-bottom: 2px;
  text-decoration: none;
}

#sub-navigation .link-to:hover,
#sub-navigation .link-to-active {
  border-bottom: 1px solid #000;
  /* transition: all 0.5s ease; */
}

text {
  font: 10px sans-serif;
  cursor: default;
}

circle {
  stroke: #565352;
  stroke-width: 1;
}

.dropdown-wrapper {
  margin: 20px 50px;
  z-index: 3;
  height: 30px;
  position: absolute;
  top: 0;
  left: 0;
}

.dropdown-visible {
  border: 1px solid #000;
  cursor: pointer;
  display: table;
  z-index: 3;
  background: #fff;
}

.dropdown-wrapper .dropdown-text {
  padding: 5px;
  width: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.dropdown-hidden {
  border: 1px solid #000;
  border-top: 0px solid #000;
  display: table;
  z-index: 3;
  background: #fff;
}

.dropdown-hidden .dropdown-item {
  cursor: pointer;
  padding: 5px 5px;
  width: 70px;
}

.dropdown-hidden .dropdown-item:hover {
  background: rgb(175, 171, 171);
}

/* .activity-ui-wrapper{
  width:100px;
  margin:20px 50px;
}
.activity-ui-wrapper .ui.selection.dropdown{
  min-height: 1em !important;
} */

/* 
Generic Styling, for Desktops/Laptops 
*/

table {
  width: 100%;
  border-collapse: collapse;
}

/* Zebra striping */

/* tr:nth-of-type(odd) {
  background: #eee;
} */

th {
  background: #333;
  color: white;
  font-weight: bold;
  cursor: s-resize;
  background-repeat: no-repeat;
  background-position: 3% center;
}

td,
th {
  padding: 6px;
  border: 1px solid #ccc;
  text-align: left;
  min-height: 18px;
}

th.des:after {
  content: "\21E9";
}

th.aes:after {
  content: "\21E7";
}

/* 
Max width before this PARTICULAR table gets nasty
This query will take effect for any screen smaller than 760px
and also iPads specifically.
*/

@media only screen and (max-width: 760px),
(min-device-width: 768px) and (max-device-width: 1024px) {
  /* Force table to not be like tables anymore */
  table,
  thead,
  tbody,
  th,
  td,
  tr {
    display: block;
  }
  caption {
    padding: 6px !important;
  }
  /* Hide table headers (but not display: none;, for accessibility) */
  thead tr {
    position: absolute;
    top: -9999px;
    left: -9999px;
  }
  tr {
    border: 1px solid #ccc;
  }
  td {
    /* Behave  like a "row" */
    border: none;
    border-bottom: 1px solid #eee !important;
    border-left: 0px solid #eee !important;
    border-right: 0px solid #eee !important;
    position: relative;
    padding-left: 50%;
  }
  td:before {
    /* Now like a table header */
    position: absolute;
    /* Top/left values mimic padding */
    top: 6px;
    left: 6px;
    width: 45%;
    padding-right: 10px;
    white-space: nowrap;
  }
  /*
  Label the data
  */
  td:before {
    content: attr(data-th) ": ";
    font-weight: bold;
    width: 6.5em;
    display: inline-block;
  }
}


.process-step-wrapper{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-between;
      -ms-flex-pack: space-between;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.process-step {
  font-size: 32px;
}

.process-img{
  width:350px;
}

.svg-wrapper{
  position: relative;
}

.expandable-collapsible{
  padding: 10px;
  border: 1px solid #000;
  position: relative;
}
.collapsible{
  display: none;
}

.expandable{
  cursor: pointer;
  position: absolute;
  top:-8px;
  background: #fff;
}