/*
    
Oranje: #EF8B00 = R239-G139-B0
Licht oranje: #F3D791 = R243-G215-B145

Paars: #502D7F = R80-G45-B127
Licht paars: #9C71D1 = R156-G113-B209

*/

html,
body {
  margin: 0;
}

html,
body,
#root,
.viewport {
  width: 100%;
  min-height: 100vh;
}

body {
  background-color: #f6f6f6;
}

.viewport {
  margin: 0 auto;
  padding-bottom: 125px;
  position: relative;
  width: 100%;
}
.float-right {
  float: right;
}

.expandable-menu {
  position: absolute;
  min-width: 150px;
  text-align: center;
  top: 60px;
  right: 15px;
  z-index: 6;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  padding: 15px 30px;
  background-color: #fff;
  opacity: 0;
  max-height: 0px;
  transition: all 200ms ease-in-out;
}

.expandable-menu.visible {
  opacity: 1;
  max-height: 200px;
}

.margin-right {
  margin-right: 10px;
}
/* Header */
.viewport .header {
  position: fixed;
  width: 100%;
  top: 0px;
  height: 60px;
  background-color: #fff;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  z-index: 100;
}
.content {
  padding-top: 60px;
  z-index: 1;
}
a.logo {
  background-image: url("../images/logo.png");
  background-size: 130px;
  background-repeat: no-repeat;
  width: 130px;
  display: inline-block;
  padding: 22px 30px 12px;
}
div.logo {
  float: left;
  margin: 20px;
}
.menu {
  padding: 20px;
  font-size: 15px;
  color: #777777;
  font-family: Arial;
}
.menu a {
  display: inline;
  width: auto;
  padding: 0 15px 16px;
  height: 30px;
  font-family: Arial;
  color: #777777;
  text-decoration: none;
}
.menu button {
  background: none;
  border: none;
}

.menu a:hover,
.menu a:active {
  color: #777777;
  text-decoration: none;
}

.header-menu-hover-bar {
  color: #cc0000;
  visibility: hidden;
  height: 5px;
  width: 100px;
  border: #449d44;
  border-radius: 2px;
  background-color: #ef8b00;
}

@font-face {
  font-family: "FontAwesome";
  src: url("../font/fontawesome-webfont.eot");
  src: url("../font/fontawesome-webfont.eot?#iefix") format("embedded-opentype"),
    url("../font/fontawesome-webfont.woff2") format("woff2"),
    url("../font/fontawesome-webfont.woff") format("woff"),
    url("../font/fontawesome-webfont.ttf") format("truetype"),
    url("../font/fontawesome-webfont.svg#fontawesomeregular") format("svg");
  font-weight: normal;
  font-style: normal;
}

::before,
::after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.fa-window-maximize::before {
  font-size: 40px;
  content: "\f2d0";
}
.fa {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: 14px;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
