html, body {
    height: 100%;

    display: flex;
    flex-direction: column;
}

body {
    flex-shrink: 0;
    background-color: #f1f1f1;
}


#header-content-wrapper {
    /*background-color: #5b80b2;*/
    height: 250px;
    /*min-height: 235px;*/
    color: white;
     -webkit-background-size: cover;
     -moz-background-size: cover;
     -o-background-size: cover;
     background-size: cover;
      background-position: center center;
    background-repeat: no-repeat;
    text-align: center;
    padding: 0;
}

#circle-nav-content-wrapper {
    background-color: white;
    height: 350px;
}

.main-content-wrapper {
    background-color: #f1f1f1;
    min-height: 100vh;
}

.manage-main-content-wrapper {
    background-color: white; !important;
    min-height: 100vh;
}

#main-title {
    text-align: center;
    justify-content: center;
    align-items: center;
    font-size: 60px;
    letter-spacing: 2px;
}

#header-content {
    max-width: 1500px;
    /*background: black;*/
}

#four-circle-container {
    /*background: yellow;*/
    max-width: 1300px;
}

#circle-nav-content {
    max-width: 1500px;
    min-width: 1500px;
    /*background: red;*/
}

#content {
    width: 1500px;
    height: 100vh;
}

#main-content {
    width: 1500px;
    min-height: 100vh;
}

#manage-content-wrapper {
    width: 1500px;
    min-height: 100vh;
    /*background-color: blue;*/
}

.manage-content {
    /*background-color: green;*/
    padding: 20px 30px;
}

.manage-header {
    margin: 25px 0;
}

#footer-content-wrapper {
    min-height: 8em;
    background-color: #205478;
    padding: 0;
}

#footer-content {
    max-width: 1500px;
    /*background: black;*/
    color: white;
}

#seg-logo {
    width: 120px;
    height: 60px;
    margin: 30px;
}

#copyright-message {
    /*background-color: cyan;*/
    padding: 3em 0;
}

#user-and-menu {
    margin: 30px 0;
    justify-content: right;
    /*background-color: #1cc88a;*/
}

#user-name {
    flex: 1 0 auto;
    padding: 0 20px;
    /*background-color: #1c606a;*/
    font-size: 14px;
}

#hamburger-menu {
    flex: 1 1 auto;
    /*background-color: blue;*/
    width: 10px;
}

#menu-image {
    width: 40px;
    background-position: top;
}

/*Hamburger Menu*/
/*
 * Made by Erik Terwan
 * 24th of November 2015
 * MIT License
 *
 *
 * If you are thinking of using this in
 * production code, beware of the browser
 * prefixes.
 */


#menuToggle
{
  display: block;
  position: relative;
  top: 0px;
  right: 0px;

  z-index: 1;

  -webkit-user-select: none;
  user-select: none;
}

#menuToggle a
{
  text-decoration: none;
  color: #232323;

  transition: color 0.3s ease;
}

#menuToggle a:hover
{
  color: tomato;
}


#menuToggle input
{
  display: block;
  width: 40px;
  height: 32px;
  position: absolute;
  top: -7px;
  left: -5px;

  cursor: pointer;

  opacity: 0; /* hide this */
  z-index: 2; /* and place it over the hamburger */

  -webkit-touch-callout: none;
}

/*
 * Just a quick hamburger
 */
#menuToggle span
{
  display: block;
  width: 33px;
  height: 4px;
  margin-bottom: 5px;
  position: relative;

  background: #cdcdcd;
  border-radius: 3px;

  z-index: 1;

  transform-origin: 4px 0px;

  transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              background 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              opacity 0.55s ease;
}

#menuToggle span:first-child
{
  transform-origin: 0% 0%;
}

#menuToggle span:nth-last-child(2)
{
  transform-origin: 0% 100%;
}

/*
 * Transform all the slices of hamburger
 * into a crossmark.
 */
#menuToggle input:checked ~ span
{
  opacity: 1;
  transform: rotate(45deg) translate(-2px, -1px);
  background: #232323;
}

/*
 * But let's hide the middle one.
 */
#menuToggle input:checked ~ span:nth-last-child(3)
{
  opacity: 0;
  transform: rotate(0deg) scale(0.2, 0.2);
}

/*
 * Ohyeah and the last one should go the other direction
 */
#menuToggle input:checked ~ span:nth-last-child(2)
{
  transform: rotate(-45deg) translate(0, -1px);
}

/*
 * Make this absolute positioned
 * at the top left of the screen
 */
#menu
{
  /*position: absolute;*/
  /*width: 300px;*/

  position: relative;
  top: 0;
  right: 190px;
  width: 350px;
  /*  Menu WIDTH */

  margin: -100px 0 0 -50px;
  padding: 50px;
  /*padding-top: 125px;*/
  padding-top: 75px;

  /*background: #ededed;*/
  background: #f1f1f1;
  list-style-type: none;
  -webkit-font-smoothing: antialiased;
  /* to stop flickering of text in safari */

  transform-origin: 0% 0%;
  transform: translate(0, -150%);

  transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
}

#menu li
{
  padding: 10px 0;
  font-size: 18px;
}

/*
 * And let's slide it in from the left
 */
#menuToggle input:checked ~ ul
{
  transform: none;
}

.nav-circle-wrapper {
    position: relative;
    /*background: beige;*/
}

.colorful-circle {
    width: 240px;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    /*z-index: 1;*/
    /*opacity: 0.5;*/
}

.nav-circle-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: black;
    line-height: 1.6;
}

