body {
    height: 100%;
    width: 100%;
    position: relative;
    overflow-x: hidden;
}

#carbon-fix {
  position: fixed;
  background: linear-gradient(45deg, #222 25%, #111 25%, #111 50%, #222 50%, #222 75%, #111 75%, #111);
  background-size: 10px 10px;
}

#carbon-free {
  background: linear-gradient(45deg, #222 25%, #111 25%, #111 50%, #222 50%, #222 75%, #111 75%, #111);
  background-size: 10px 10px;
}

/*-------------------------------*/
/*       kleuren                 */
/*-------------------------------*/
.bg-dark {
  background: linear-gradient(45deg, #222 25%, #111 25%, #111 50%, #222 50%, #222 75%, #111 75%, #111);
  background-size: 10px 10px;
}

/*-------------------------------*/
/*       fonts                   */
/*-------------------------------*/
.gdtafont {
  font-family: "Segoe Print";
  font-size: 5rem;
  color:#f7061e;
}

.gdtafontS {
  font-family: "Segoe Print";
  font-size: 2rem;
  color:#f7061e;
}

.gdtafontSW {
  font-family: "Segoe Print";
  font-size: 2rem;
  color:#fff;
}

.gdtafontSM {
  font-family: "Segoe Print";
  font-size: 1rem;
  color:#fff;
}

.gdtafontS10 {
  font-family: "Segoe Print";
  font-size: 10px;
  color:#fff;
}


/*-------------------------------*/
/*       sidebar                 */
/*-------------------------------*/
.sidebar-nav li:first-child a {
    color: #fff;
    background-color: #000;
}
.sidebar-nav li:nth-child(5n+1):before {
    background-color: #f7061e;   
}
.sidebar-nav li:nth-child(5n+2):before {
    background-color: #f7061e;   
}
.sidebar-nav li:nth-child(5n+3):before {
    background-color: #f7061e;   
}
.sidebar-nav li:nth-child(5n+4):before {
    background-color: #f7061e;   
}
.sidebar-nav li:nth-child(5n+5):before {
    background-color: #f7061e;   
}


/*-------------------------------*/
/*       Fontawesome icons       */
/*-------------------------------*/
.nav.sidebar-nav li a::before {
    font-family: fontawesome;
    vertical-align: baseline;
    display: inline-block;
    padding-right: 5px;
}
a[href*="#home"]::before {
  content: "\f015" !important;
}
a[href*="#about"]::before {
  content: "\f129" !important;
}
a[href*="#events"]::before {
  content: "\f073" !important;
}
a[href*="#team"]::before {
  content: "\f0c0" !important;
}
a[href*="#works"]::before {
  content: "\f0b1" !important;
}
a[href*="#pictures"]::before {
  content: "\f03e" !important;
}
a[href*="#videos"]::before {
  content: "\f03d" !important;
}
a[href*="#books"]::before {
  content: "\f02d" !important;
}
a[href*="#art"]::before {
  content: "\f1fc" !important;
}
a[href*="#awards"]::before {
  content: "\f02e" !important;
}
a[href*="#services"]::before {
  content: "\f013" !important;
}
a[href*="#contact"]::before {
  content: "\f086" !important;
}
a[href*="#facebook"]::before {
  content: "\f230" !important;
}
a[href*="#instagram"]::before {
  content: "\f16d" !important;
}
a:link {
  color: white;
  background-color: transparent;
  text-decoration: none;
}


/*-------------------------------*/
/*       Hamburger-Cross         */
/*-------------------------------*/

.hamburger {
  position: fixed;
  top: 165px;  
  z-index: 999;
  display: block;
  width: 32px;
  height: 32px;
  margin-left: 30px;
  background: transparent;
  border: none;
}
.hamburger:hover,
.hamburger:focus,
.hamburger:active {
  outline: none;
}
.hamburger.is-closed:before {
  content: '';
  display: block;
  width: 100px;
  font-size: 14px;
  color: #f7061e;
  line-height: 32px;
  text-align: center;
  opacity: 0;
  -webkit-transform: translate3d(0,0,0);
  -webkit-transition: all .35s ease-in-out;
}
.hamburger.is-closed:hover:before {
  opacity: 1;
  display: block;
  -webkit-transform: translate3d(-100px,0,0);
  -webkit-transition: all .35s ease-in-out;
}

.hamburger.is-closed .hamb-top,
.hamburger.is-closed .hamb-middle,
.hamburger.is-closed .hamb-bottom,
.hamburger.is-open .hamb-top,
.hamburger.is-open .hamb-middle,
.hamburger.is-open .hamb-bottom {
  position: absolute;
  left: 0;
  height: 4px;
  width: 100%;
}
.hamburger.is-closed .hamb-top,
.hamburger.is-closed .hamb-middle,
.hamburger.is-closed .hamb-bottom {
  background-color: #f7061e;
}
.hamburger.is-closed .hamb-top { 
  top: 5px; 
  -webkit-transition: all .35s ease-in-out;
}
.hamburger.is-closed .hamb-middle {
  top: 50%;
  margin-top: -2px;
}
.hamburger.is-closed .hamb-bottom {
  bottom: 5px;  
  -webkit-transition: all .35s ease-in-out;
}

.hamburger.is-closed:hover .hamb-top {
  top: 0;
  -webkit-transition: all .35s ease-in-out;
}
.hamburger.is-closed:hover .hamb-bottom {
  bottom: 0;
  -webkit-transition: all .35s ease-in-out;
}
.hamburger.is-open .hamb-top,
.hamburger.is-open .hamb-middle,
.hamburger.is-open .hamb-bottom {
  background-color: #f7061e;
}
.hamburger.is-open .hamb-top,
.hamburger.is-open .hamb-bottom {
  top: 50%;
  margin-top: -2px;  
}
.hamburger.is-open .hamb-top { 
  -webkit-transform: rotate(45deg);
  -webkit-transition: -webkit-transform .2s cubic-bezier(.73,1,.28,.08);
}
.hamburger.is-open .hamb-middle { display: none; }
.hamburger.is-open .hamb-bottom {
  -webkit-transform: rotate(-45deg);
  -webkit-transition: -webkit-transform .2s cubic-bezier(.73,1,.28,.08);
}
.hamburger.is-open:before {
  content: '';
  display: block;
  width: 100px;
  font-size: 14px;
  color: #f7061e;
  line-height: 32px;
  text-align: center;
  opacity: 0;
  -webkit-transform: translate3d(0,0,0);
  -webkit-transition: all .35s ease-in-out;
}
.hamburger.is-open:hover:before {
  opacity: 1;
  display: block;
  -webkit-transform: translate3d(-100px,0,0);
  -webkit-transition: all .35s ease-in-out;
}


/*-------------------------------*/
/*            Overlay            */
/*-------------------------------*/

.overlay {
    position: fixed;
    display: none;
    width: 100%;
    height: 100%;
    top: 18%;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(250,250,250,0);
    z-index: 1;
}

/*-------------------------------*/
/*            Table              */
/*-------------------------------*/
.table-fixed {

  thead > tr, tbody > tr {
    display: flex;
    justify-content: space-around;
    flex: 0 0 auto;

    th, td {
      flex: 1;
    }
  }

  tbody {
    overflow: scroll;
    display: flex;
    flex-direction: column;
  }
}

.table-lock-height > tbody {
  height: 30vh;
}

.table-lock-height-s > tbody {
  height: 60vh;
}
.table-dark {
  background: linear-gradient(45deg, #222 25%, #111 25%, #111 50%, #222 50%, #222 75%, #111 75%, #111);
  background-size: 10px 10px;
  color: #fff; }
  .table-dark th,
  .table-dark td,
  .table-dark thead th {
    float:left;
    word-break: break-word;
    border-color: #454d55; }
  .table-dark.table-bordered {
    border: 0; }

.hide-scrollbar { 
    overflow-x: hidden; 
} 

