/**
 * CSS Modal
 * Modal as reusable module
 * http://drublic.github.com/css-modal
 *
 * @author Hans Christian Reinl - @drublic
 * @version 1.0.4
 *
 * Usage:
 *    selector {
 *        @extend %modal;
 *    }
 */
/*
 * Configuration
 */
html {
  overflow-y: scroll; }

table {
  width: 100%;
}

.btn-fixedwidth {
  width: 90px;
}
.btn-danger {
  background: #990000;
}
.btn-danger:hover {
  background: #FF0000;
}

.has-overlay {
  overflow: hidden; }
  .has-overlay > body {
    height: 100%;
    overflow-y: scroll; }

.semantic-content {
  -webkit-transform: translate(0, 100%);
  -moz-transform: translate(0, 100%);
  -o-transform: translate(0, 100%);
  -ms-transform: translate(0, 100%);
  transform: translate(0, 100%);
  -webkit-transform: translate3d(0, 100%, 0);
  transform: translate3d(0, 100%, 0);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  opacity: 0;
  color: #222;
  line-height: 1.3;
  display: none\9; }
  .semantic-content:target {
    -webkit-transform: translate(0, 0);
    -moz-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
    opacity: 1; }
  .is-active.semantic-content {
    display: block\9; }
  .semantic-content:target {
    display: block\9; }
  .semantic-content .modal-inner {
    position: absolute;
    top: 50px;
    left: 50%;
    z-index: 20;
    margin-left: -450px;
    width: 900px;
    overflow-x: hidden;
    background: #fff;
    -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.6);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.6); }
    .semantic-content .modal-inner > img,
    .semantic-content .modal-inner > video,
    .semantic-content .modal-inner > iframe {
      width: 100%;
      height: auto;
      min-height: 300px; }
    .semantic-content .modal-inner > img {
      width: auto;
      max-width: 100%; }
  .semantic-content header {
    padding: 1em 1.2em 0; }
    .semantic-content header > h4 {
      color: #1aa4cd;
      font-size: 2em;
      margin: 0;
      text-align: center; }
  .semantic-content .modal-content {
    max-height: 400px;
    max-height: 70vh;
    padding: 15px 1.2em;
    overflow-x: hidden;
    overflow-y: auto; }
    .semantic-content .modal-content > * {
      max-width: 100%; }
  .semantic-content footer {
    padding: 0 1.2em 18px;
    border-radius: 2px; }
  .semantic-content .modal-close {
    display: block;
    text-indent: -100px;
    overflow: hidden; }
    .semantic-content .modal-close:before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      z-index: 10;
      background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAEElEQVR42gEFAPr/AAAAAMwA0QDNTiUx4gAAAABJRU5ErkJggg=="); }
    .semantic-content .modal-close:after {
      content: '\00d7';
      position: absolute;
      top: 25px;
      left: 50%;
      z-index: 20;
      margin-left: 410px;
      background: #fff;
      padding: 2px 8px;
      font-size: 1.2em;
      text-decoration: none;
      text-indent: 0; }
  @media screen and (max-width: 940px) {
    .semantic-content .modal-inner {
      width: auto;
      left: 20px;
      right: 20px;
      margin-left: 0; }
    .semantic-content .modal-close {
      left: auto;
      right: 33px;
      margin-left: 0; }
      .semantic-content .modal-close:after {
        margin-left: 40%; } }
  @media screen and (max-width: 30em) {
    .semantic-content {
      -webkit-transform: translate(0, 400px);
      -webkit-transform: translate3d(0, 100%, 0);
      transform: translate3d(0, 100%, 0);
      -webkit-transition: -webkit-transform .25s ease-in-out, opacity 1ms .25s;
      -moz-transition: -moz-transform .25s ease-in-out, opacity 1ms .25s;
      -o-transition: -o-transform .25s ease-in-out, opacity 1ms .25s;
      -ms-transition: -ms-transform .25s ease-in-out, opacity 1ms .25s;
      transition: transform .25s ease-in-out, opacity 1ms .25s;
      display: block;
      height: 100%;
      bottom: auto; }
      .semantic-content:target {
        -webkit-transition: -webkit-transform .25s ease-in-out;
        -moz-transition: -moz-transform .25s ease-in-out;
        -o-transition: -o-transform .25s ease-in-out;
        -ms-transition: -ms-transform .25s ease-in-out;
        transition: transform .25s ease-in-out; }
      .semantic-content:before {
        background-color: #27aae2;
        background-image: -webkit-gradient(linear, left top, left bottom, from(#27aae2), to(#1c9cd3));
        background-image: -webkit-linear-gradient(top, #27aae2, #1c9cd3);
        background-image: -moz-linear-gradient(top, #27aae2, #1c9cd3);
        background-image: -o-linear-gradient(top, #27aae2, #1c9cd3);
        background-image: linear, to bottom, #27aae2, #1c9cd3;
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 30;
        height: 3em;
        -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.6);
        box-shadow: 0 0 5px rgba(0, 0, 0, 0.6); }
      .semantic-content .modal-inner {
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
        top: 0;
        left: 0;
        right: 0;
        padding-top: 3em;
        height: 100%;
        overflow: scroll;
        -webkit-box-shadow: none;
        box-shadow: none; }
      .semantic-content .modal-content {
        max-height: none; }
      .semantic-content .modal-close {
        right: auto;
        text-decoration: none; }
        .semantic-content .modal-close:before {
          display: none; }
        .semantic-content .modal-close:after {
          content: attr(data-close);
          top: 0.4em;
          left: 1em;
          z-index: 40;
          margin-left: 0;
          font-size: 1em;
          padding: 0.5em 1em; } }
  @media screen and (max-height: 46em) and (min-width: 30em) {
    .semantic-content .modal-content {
      max-height: 340px;
      max-height: 50vh; } }
  @media screen and (max-height: 36em) and (min-width: 30em) {
    .semantic-content .modal-content {
      max-height: 265px;
      max-height: 40vh; } }

@media screen and (min-width: 30em) {
  .semantic-content {
    -webkit-transition: opacity 0.4s;
    -o-transition: opacity 0.4s;
    transition: opacity 0.4s; } }

@font-face {
  font-family: 'Open Sans';
  src: url("fonts/OpenSans-Light.eot");
  src: url("fonts/OpenSans-Light.eot?#iefix") format("embedded-opentype"), url("fonts/OpenSans-Light.woff") format("woff"), url("fonts/OpenSans-Light.ttf") format("truetype"), url("fonts/OpenSans-Light.svg#SourceSansProExtraLight") format("svg");
  font-weight: 300;
  font-style: normal; }

@font-face {
  font-family: 'Open Sans';
  src: url("fonts/OpenSans-Regular.eot");
  src: url("fonts/OpenSans-Regular.eot?#iefix") format("embedded-opentype"), url("fonts/OpenSans-Regular.woff") format("woff"), url("fonts/OpenSans-Regular.ttf") format("truetype"), url("fonts/OpenSans-Regular.svg#SourceSansProRegular") format("svg");
  font-weight: normal;
  font-style: normal; }

@font-face {
  font-family: 'Open Sans';
  src: url("fonts/OpenSans-Semibold.eot");
  src: url("fonts/OpenSans-Semibold.eot?#iefix") format("embedded-opentype"), url("fonts/OpenSans-Semibold.woff") format("woff"), url("fonts/OpenSans-Semibold.ttf") format("truetype"), url("fonts/OpenSans-Semibold.svg#SourceSansProSemibold") format("svg");
  font-weight: 600;
  font-style: normal; }

@font-face {
  font-family: 'Open Sans';
  src: url("fonts/OpenSans-Bold.eot");
  src: url("fonts/OpenSans-Bold.eot?#iefix") format("embedded-opentype"), url("fonts/OpenSans-Bold.woff") format("woff"), url("fonts/OpenSans-Bold.ttf") format("truetype"), url("fonts/OpenSans-Bold.svg#SourceSansProBold") format("svg");
  font-weight: bold;
  font-style: normal; }

@font-face {
  font-family: 'demoIcons';
  src: url("fonts/demoIcons.eot");
  src: url("fonts/demoIcons.eot?#iefix") format("embedded-opentype"), url("fonts/demoIcons.woff") format("woff"), url("fonts/demoIcons.ttf") format("truetype"), url("fonts/demoIcons.svg#demoIcons") format("svg");
  font-weight: normal;
  font-style: normal; }

*, *:before, *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

body {
  font-family: "Open Sans", "Segoe UI", Helvetica, Tahoma, Arial, sans-serif;
  font-size: 100%;
  line-height: 1.5;
  color: #262625;
  background-color: #f7f3ed;
  -webkit-font-smoothing: antialiased; }

img {
  width: 100%;
  height: auto; }

.brand {
  width: 280px;
  height: 39px;
  background: url("img/logo.svg") no-repeat 0 0/contain;
  color: transparent;
  font: 0/0 a;
  text-shadow: none; }

#footer {
  color: #caaf88;
  font-size: 0.6875em;
  text-align: center;
  margin-top: 3.63636em;
  margin-bottom: 0.90909em; }

[class*="icon-"] {
  font-family: 'demoIcons';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased; }

.icon-arrow-right:before {
  content: "\e001"; }

.icon-info:before {
  content: "\e000"; }

.icon-mail:before {
  font-size: 22px;
  vertical-align: text-bottom;
  content: "\e002"; }

header {
  padding: 1.5625em 0 0.5em; }
  header .brand {
    float: left; }

video + h2 {
  margin: 15px 0 0; }

h1, h2, h3, h4 {
  margin: 0 0 0.26667em;
  padding: 0 0 0.26667em;
  color: #575555;
  line-height: 1; }
  h1 > sup, h2 > sup, h3 > sup, h4 > sup {
    font-size: 70%; }

address {
  font-style: normal;
  font-size: 0.9375em; }
  address > strong {
    font-size: 1.2em; }

h1 {
  font-size: 1.875em; }
  .paper h1 {
    border-bottom: 1px solid #e5e5e5; }
  h1 .brand {
    width: 265px;
    display: inline-block;
    vertical-align: middle; }

h2 {
  font-size: 1.625em; }

h4 {
  font-size: 1.25em; }

p {
  margin: 0 0 1em; }

a {
  color: #1aa4cd;
  text-decoration: none; }
  a:visited, a:focus {
    color: #1aa4cd; }
  a:hover, a:focus, a:active {
    text-decoration: underline; }

.txt-small {
  font-size: 80%; }

.lhn {
  line-height: 0.9; }

.utils--right {
  float: right; }

.utils--center {
  text-align: center; }

.utils--hover-info {
  position: relative; }
  .utils--hover-info .info {
    opacity: 0;
    position: absolute;
    width: 100%;
    height: 50%;
    margin: auto;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    text-align: center;
    -webkit-transition: opacity ease-out 0.1s;
    -moz-transition: opacity ease-out 0.1s;
    transition: opacity ease-out 0.1s; }
    .utils--hover-info .info > span {
      background: #555;
      color: #fff;
      padding: 0.625em 1.25em;
      border-radius: 5px; }
  .utils--hover-info:hover .info {
    opacity: 1; }

.utils--img-75 {
  max-width: 75%;
  display: block;
  margin: 0 auto; }

@media (max-width: 49.9375em) {
  .spagetthi-monster {
    max-width: 50%;
    max-height: 150px;
    width: auto;
    display: block;
    margin: 0 auto; } }
.container, .container-small {
  max-width: 800px;
  width: 96%;
  margin: 0 auto;
  padding-left: 20px; }
  .container:after, .container-small:after {
    content: '';
    display: table;
    clear: both; }
  .container.np, .np.container-small {
    padding: 0; }
  .container.with-space, .with-space.container-small {
    margin-top: 3.125em;
    margin-bottom: 3.125em; }

.container-small {
  max-width: 37.5em; }

.container-large {
  max-width: 1100px;
  padding-left: 40px; }

[class*="span-"] {
  float: left;
  padding: 0 20px 0 0; }
  [class*="span-"] > [class*="span-"] {
    padding-left: 20px;
    padding-right: 0; }
    [class*="span-"] > [class*="span-"]:first-child {
      padding: 0; }
  @media (min-width: 50em) {
    [class*="span-"].nbp {
      padding-bottom: 0; }
    [class*="span-"].np {
      padding: 0; } }

.span-1 {
  width: 8.33333%; }

.span-2 {
  width: 16.66667%; }

.span-3 {
  width: 25%; }

.span-4 {
  width: 33.33333%; }

.span-5 {
  width: 41.66667%; }

.span-6 {
  width: 50%; }

.span-7 {
  width: 58.33333%; }

.span-8 {
  width: 66.66667%; }

.span-9 {
  width: 75%; }

.span-10 {
  width: 83.33333%; }

.span-11 {
  width: 91.66667%; }

.span-12 {
  width: 100%; }

@media (max-width: 49.9375em) {
  .span-1,
  .span-2,
  .span-3,
  .span-4,
  .span-5,
  .span-6,
  .span-7,
  .span-8,
  .span-9,
  .span-10,
  .span-11 {
    width: 100%%; } }
.off-1 {
  margin-left: 8.33333%; }

.off-2 {
  margin-left: 16.66667%; }

.off-3 {
  margin-left: 25%; }

.off-4 {
  margin-left: 33.33333%; }

.off-5 {
  margin-left: 41.66667%; }

.off-6 {
  margin-left: 50%; }

.off-7 {
  margin-left: 58.33333%; }

.off-8 {
  margin-left: 66.66667%; }

.off-9 {
  margin-left: 75%; }

.off-10 {
  margin-left: 83.33333%; }

.off-11 {
  margin-left: 91.66667%; }

.off-12 {
  margin-left: 100%; }

.paper, .book {
  background: white;
  border: 1px solid #dedede; }

.paper {
  position: relative;
  margin-top: 2.5em;
  margin-bottom: 1.5625em;
  padding-top: 1.5em; }
  .container-large.paper {
    padding-top: 3em; }

.paper:before {
  position: absolute;
  content: "";
  z-index: -1;
  top: 50%;
  bottom: 0;
  left: 10px;
  right: 10px;
  border-radius: 250px / 25px;
  box-shadow: 0 0 0.75em rgba(0, 0, 0, 0.6); }

.book {
  border-bottom-color: #d1d1d1;
  position: relative; }
  .book img {
    vertical-align: middle; }
  .book:before, .book:after {
    content: '';
    display: block;
    position: absolute;
    background: whitesmoke;
    border: 1px solid #d1d1d1;
    height: 50%; }
  .book:before {
    width: 98%;
    bottom: -3px;
    left: 1%;
    z-index: -1; }
  .book:after {
    width: 96%;
    bottom: -6px;
    left: 2%;
    z-index: -2; }

.book-cover {
  vertical-align: middle; }

.button {
  display: inline-block;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 5px;
  padding: 0.33333em 1.06667em;
  color: #1aa4cd;
  font-size: 0.9375em;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0px 1px 0px #ccc; }
  .button:hover {
    background: #fafafa; }
  .button > [class*="icon-"] {
    font-size: 16px;
    font-size: 1rem; }

a.button:hover {
  text-decoration: none; }

.button--primary {
  background: #1aa4cd;
  border-color: #178cb0;
  color: #fff; }
  .button--primary:hover {
    background: #1eb5e2; }

a.button--primary {
  color: #fff; }

.button--large {
  font-size: 1.125em; }

.button--extrem {
  font-size: 1.375em; }

figure.thumb.with-caption {
  position: relative;
  float: left;
  display: block;
  overflow: hidden;
  width: 100%;
  border: 2px solid #d8d8d8;
  -webkit-transition: border-color 0.2s ease-out;
  -moz-transition: border-color 0.2s ease-out;
  transition: border-color 0.2s ease-out; }
  figure.thumb.with-caption:hover {
    border-color: #b2b2b2; }
    figure.thumb.with-caption:hover figcaption {
      background: rgba(0, 0, 0, 0.8); }
  figure.thumb.with-caption a {
    line-height: 1; }
  figure.thumb.with-caption a {
    display: block; }
  figure.thumb.with-caption img {
    vertical-align: middle; }
  figure.thumb.with-caption figcaption {
    position: absolute;
    width: 100%;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.5);
    padding: 10px;
    -webkit-transition: background 0.2s ease-out;
    -moz-transition: background 0.2s ease-out;
    transition: background 0.2s ease-out; }
  figure.thumb.with-caption h4 {
    color: #fff;
    font-size: 1em;
    margin: 0;
    text-align: center;
    font-weight: 600; }

.error-message {
  background-color: #c76e6d;
  color: white;
  padding: 7px 7px 5px 7px;
  text-align: center;
  margin-bottom: 5px;
}

button.readable-button,
a.readable-button {
  line-height: 2.66667em;
  font-weight: 600;
  font-size: 11px !important;
  color:white;
}
