/* A bit of spacing on the main container */
html {
  height: 100% !important;
}
body {
  background-color: #f8f9fa !important;
  height: auto !important; /* 100% !important; */
  overflow-x: hidden;
  overflow-y: scroll;
}

.page-wrapper {
  width: 100%;
  height: auto;
  display: block;
  /* max-width: 1600px; /* 1400px; */
  margin: 0px auto 0px 0px;
  padding: 0px 0px 0px 0px; /* 1.5em 0px 0px 1.5em; */
}
.page-wrapper:after {
  content: "";
  display: table;
  clear: both;
}

.publLeft,
.publRight {
  display: block;
  float: left;
}
.publRight {
  min-height: 630px;
}

/* Logo style */
.logo {
  width: 100%;
  display: block;
  margin-bottom: 1.25em;
}
.logo:after {
  content: "";
  display: table;
  clear: both;
}
.logo a {
  display: block;
  float: left;
  width: 100%;
  max-width: 200px; /* 225px; */
  height: auto;
  text-indent: -999em;
}
.logo a img {
  display: block;
  float: left;
  width: 100%;
  height: auto;
}

/* header graphics */
header .grid .colLeft,
header .grid .colRight {
  display: block;
  float: left;
}

footer {
  width: 100%;
  height: auto;
  border-top: 1px solid rgba(0,0,0,0.1);
}
/* needs to mimic page-wrapper */
footer.btmFooter {
  padding: 1em; /* 1em 0px 1em 0px; /* 1.5em 0px 0.5em 1.5em; */
  margin: 0px 0px 0px 0px; /*  0px auto 0px 0px; */
}
/* needs to mimic page-wrapper */
footer.topFooter {
  padding: 1em 0px 1em 0px; /* 1.5em 0px 0.5em 1.5em; */
  margin: 2em 0px 0px 0px; /*  0px auto 0px 0px; */
}
footer p {
  margin-bottom: 0px;
}

.btmLogosWrap {
  display: inline-block;
  width: 100%;
  padding-top: 1em; /* 0.75em; */
}
.btmLogos {
  height: 34px;
  width: auto;
  display: inline-block;
  opacity: 0.5;
}
.btmLogos:first-of-type {
  margin-right: 1.1em;
}

.hidden {
  height: 0px;
  overflow: hidden;
}


/* ******************************************** */

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  font-weight: 700 !important;
  word-break: break-word; /* break-all; */
}


/* table overwrites */


.table thead th {
  border-bottom: 1px solid rgba(0,0,0,0.1) !important;
}
table td {
  border-top: 1px solid rgba(0,0,0,0.1) !important;
}
.table-striped tbody tr:nth-of-type(odd) {
  background-color: rgba(0, 0, 0, 0.03) !important;
}
.table td.source {
  width: 30%;
}

/* ******************************************** */
/* VISTIS word boxes */

/* THIS ONE IS THE NON_ADMIN VERSION */
.wordWrapper {
  display: block;
  width: 100%;
  background-color: #FFE5CC;
  font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
  font-size: 2.5em;
  line-height: 1.65em;
  padding: 0.25em 0.25em 0px 0.25em;
}
.wordWrapper:after {
  content: "";
  display: table;
  clear: both;
}

.wordWrapper ul {
  list-style-type: none;
  padding: 0px;
  text-align: left;
}

.wordWrapper ul li {
  list-style-type: none;
  padding: 0px;
  display: inline-block;
  padding: 0px 0.25em;
  border-radius: 0.15em;
  border: 1px solid transparent;
  background-color: rgba(255,255,255,0.5);
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  margin: 0.1em;
  transform: rotate(0.001turn);
}
/* 
.wordWrapper ul li:hover,
.wordWrapper ul li.withImage:hover {
  transform: scale(1.1);
  border: 1px solid red;
}
*/
.wordWrapper ul li.withImage {
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  background-color: rgba(255,255,255,0);
  color: rgba(0,0,0,0);
  transform: rotate(-0.001turn);
}

.unselectable {
  -moz-user-select: -moz-none;
  -khtml-user-select: none;
  -webkit-user-select: none;
  -o-user-select: none;
  user-select: none;
}


.grid {
  padding: 0px;
}
.grid:after {
  content: "";
  display: table;
  clear: both;
}



/* ************************************************************************* */
/* ************************************************************************* */
/* ************************************************************************* */
/* ************************************************************************* */
/* ************************************************************************* */
/* SMALLEST */

@media screen {

  .publLeft {
    width: 100%; /* 33.3333%; /* 30%; */
    padding: 1em 0.5em; /* 1em 0px; /* som leftwrapper på forsiden! */ /* 0px 2em 0px 0px; */
  }

  .publRight {
    width: 100%; /* 66.6666%; /* 70%; */
    background-color: #FFE5CC;
    padding: 0.5em 0px 0px 0px;
  }

  header {
    margin: 0px 0.5em 0px 0.5em;
  }
  
  header .grid .colLeft {
    width: 100%; /* 25%; */
    padding-right: 2em;
    padding-bottom: 1.5em;
  }
  header .grid .colRight {
    width: 100%; /* 75%; */
  }

  .logo {
    max-width: 150px;
    margin: 0px 0px 0px -0.5em;
  }

  /* Footers */
  footer.btmFooter { display: block; float: left; }
  footer.topFooter { display: none; }

}


/* ************************************************************************* */
/* ************************************************************************* */
/* LARGER */
@media screen and (min-width: 500px) {

  header .grid .colLeft {
    width: 30%;
    padding-right: 2em;
  }
  header .grid .colRight {
    width: 70%;
  }

  .logo {
    max-width: 200px;
  }
}


/* ************************************************************************* */
/* ************************************************************************* */
/* LARGER */
@media screen and (min-width: 960px) {
  
  /* set bg */
  body {
    background-image: -moz-linear-gradient(left, #f8f9fa 0%, #f8f9fa 27.5%, #FFE5CC 28.5%, #FFE5CC 100%);
    background-image: -webkit-linear-gradient(left, #f8f9fa 0%, #f8f9fa 27.5%, #FFE5CC 28.5%, #FFE5CC 100%);
    background-image: linear-gradient(to right, #f8f9fa, #f8f9fa 27.5%, #FFE5CC 27.5%);
    background-attachment:fixed;
    background-repeat: no-repeat;
  }

  /* this fixes the leftCol */
  .fixedWrapper {
    display: inline-block;
    width: 27.5%;
    position: fixed;
    padding: 0px 1em
  }

  .publLeft {
    width: 27.5%; /* 20%; */
    padding: 1em 0px; /* 1em 1em; /* som leftwrapper på forsiden! */ /* 0px 2em 0px 0px; */
  }

  .publRight {
    width: 72.5%; /* 80%; */
  }

  
  header {
    margin: 0px; /* 0px 0px 0px -0.5em; /* 0px -0.5em 2em -0.5em; */
  }
  header .grid .colLeft {
    width: 100%; /* 30%; */
    padding-right: 0px; /* 2em; */
  }
  header .grid .colRight {
    width: 100%; /* 70%; */
  }

  .logo {
    max-width: 200px;
  }

  /* Footers */
  footer.btmFooter { display: none; }
  footer.topFooter { display: block; float: left; }

}