@charset "utf-8";

:root {
  --main-text-color: rgba(0,0,0,0.86);
  --main-bg-color: #DDD;
  --main-link-color: tomato; /* #990000; */
  --border-radius: 5px;
}

/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
* {
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  hyphens: auto;
}
*, *:after, *:before {
  -webkit-box-sizing:border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.unselectable {
  -moz-user-select: -moz-none;
  -khtml-user-select: none;
  -webkit-user-select: none;
  -o-user-select: none;
  user-select: none;
}

::-webkit-scrollbar {
  width: 1rem;
  background-color: transparent;
}
::-webkit-scrollbar-thumb {
  background-color: var(--main-bg-color);
  border: none;
}
::-webkit-scrollbar-track {
  -webkit-box-shadow: none;
  box-shadow: none;
  background-color: transparent;
}


.hidden {
  display: none !important;
}


/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
/* SITE SPECIFIC styling ++++++++++++++++++++++++++++++++++++++++++++++++++ */
/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */

html {
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

body {
  width: 100%;
  height: 100vh;
  background-color: var(--main-bg-color);
  color: var(--main-text-color);
  font-family: 'cambria', serif;
  /*font-weight: 10;*/
  font-size: 18px;
  line-height: 1.4em;
  margin: 0px;
  padding: 0px;
  overflow: hidden;
  
  
  
}


.pageWrapper {
  width: 100vw;
  height: 100vh;
  /* border: 5px solid pink; */
  position: relative; /* very important */
  overflow: hidden;
}


/* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
/* TYPE STUFF */

h1, h2, h3, h4, h5, h6 {
  
  font-family: 'cambria', serif;
  font-weight: 10;
  line-height: 1.15em;
  margin: 0px 0px 0px 0px;
  letter-spacing: 0em;
}
h1 {
  font-size:2em;
  letter-spacing: 0.3em;
  margin: 0px 0px 0px 30px;
}
h2 {
  font-size: 1.5em; /* 1.5em; */
  padding: 0px;
  margin-bottom: 0.475em; /* 0.375em; */
  letter-spacing: 0.1em;
}
h3 {
  font-size: 1.375em;
  padding: 0px;
}

p {
  font-size: 1em;
  margin: 0px 0px 1.35em 0px;
  
}
li {
  list-style-type: disc;
  margin: 0px 0px 0px 0px;
}

/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */

.mapWrapper {
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
}

#map {
  width: 100%;
  height: 100%
}



/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */


.bottomScreenWrapper {
  position: absolute;
  bottom: 0px;
  left: 0px;
  right: 0px;
  z-index: 1000;
  padding: 1rem;
}


.locationListWrapper {
  position: absolute;
  /* top: 5rem; */
  left: 1rem;
  bottom: 1rem;
  z-index: 1001;
  font-weight: 400;
  background-color: rgba(255,255,255,0.9);
  border-radius: var(--border-radius);
  padding: 0px 2rem;
  height: 0px;
  width: 40rem;
  overflow-y: scroll;
  overflow-x: hidden;
  transition: all 200ms ease-in-out;
}

.locationListWrapper ul {
  list-style-type: none;
  margin: 0px; padding: 0px;
}

.locationListWrapper ul li {
  margin: 0px 0px 1rem 0px;
}

/* class for maxing debug pane */
.locMax {
  height: calc(100% - 2rem);
  padding: 2rem 2rem;
}

/* location button - location pane control */
.locBtnWrapper {
  position: absolute;
  left: 1rem; /* 0.75rem; */
  bottom: 1rem; /* 0.75rem; */
  z-index: 1002;
  display: none;
}

.locBtnWrapper a {
  display: block;
  width: 3rem;
  height: 3rem;
  border-radius: var(--border-radius);
  background-color: #444;
  opacity: 0.75;
  font-size: 2rem;
  text-align: center;
  line-height: 3rem; /* 2.75rem; */
  text-decoration: none;
  color: white;
  z-index: inherit;
}
.locBtnWrapper a:hover {
  opacity: 1.0;
  cursor: pointer;
}



/* *************************************************************************************************' */

  
.mapboxgl-popup {
  max-width: 100px; /* 200px; */
}

.marker {
  /* background-image: url('https://docs.mapbox.com/mapbox-gl-js/assets/washington-monument.jpg'); */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  /* background-color: pink; */
  border: 4px solid white; /* 2px solid white; */
  width: 60px; /* 50px; */
  height: 60px; /* 50px; */
  border-radius: 50%;
}

/* player inside popup */
.mapboxgl-popup-content {
  padding: 0px 0px 0px 0px !important; /* 10px 10px 15px; */
}

.popupWrapper {
  width: 90%;
  max-width: 640px !important;
  height: auto;
  position: relative;
  -moz-user-select: -moz-none;
  -khtml-user-select: none;
  -webkit-user-select: none;
  -o-user-select: none;
  user-select: none;  
}


/* video wrapper */

.videoWrapper {
  display: block;
  width: 100%;
}
.videoWrapper::after {
  display: table;
  content: "";
  clear: both;
}

.videoWrapper video {
  width: 100%;
  height: auto;
}

.videoTextWrapper {
  display: block;
  width: 100%;
}
.videoTextWrapper::after {
  display: table;
  content: "";
  clear: both;
}
.videoTextWrapper h2 {
  font-size: 24px;
  line-height: 1.25em;
  margin: 10px 10px 10px 10px;
}
.videoTextWrapper p {
  margin: 10px
}


/* top wrapper */
.topWrapper {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  overflow: hidden;
}
.topWrapper::after {
  display: table;
  content: "";
  clear: both;
}
.topWrapper .thumb {
  display: block;
  float: left;
  width: 240px;
  margin: 0px 18px 10px 0px; /* 0px 18px 9px 0px; */
}
.topWrapper .thumb img {
  display: block;
  float: left;
  width: 100%;
  height: auto;
}
/* txt */
.topWrapper .txt {
  display: block;
  float: left;
  width: 360px;
  margin-bottom: 10px; /* 9px; */
  font-size: 17px;
  line-height: 1.35em;
}
.topWrapper .txt .overskrift {
  display: block;
  float: left;
  width: 100%;
  font-size: 20px;
  line-height: 27px;
  margin-bottom: 0.5rem;
}
.topWrapper .txt .no {
  color: red;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, Courier, monospace;
  margin-right: 1px;
}


/* bottom wrapper */
.bottomWrapper {
  display: block;
  width: 100%;
  height: 110px;
  background: #DDD;
  border-radius: 2px;
}
.bottomWrapper::after {
  display: table;
  content: "";
  clear: both;  
}

.bottomWrapper .iframeWrapper {
  display: block;
  width: 100%;
  padding: 0px; /* 7px 9px 9px 0px; */
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, Courier, monospace;
  font-size: 15px;
  letter-spacing: -0.01em;
  overflow: hidden;
}



/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
/* THERE ARE STYLESHEETS ATTACHED TO THIS formatting */

/* grids */
/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
@media screen {

  .pageWrapper {
    width: 100%;
    height: 100%;
    padding: 2rem;
  }

  /* logo */
  .logoWrapper {
    position: absolute;
    display: block;
    width: 188px;
    top: 1.5rem;
    left: 1.5rem;
    z-index: 1000;
  }
  /*
  .logoWrapper .logo {
    display: block;
    width: 300px;
    text-align: center;
    height: 50px;
    border: 1px solid white;
  }
  */
  .logoWrapper .logo svg {
    display: block;
    height: 50px;
    width: auto; /* 188px; /* 300px; */
    margin-bottom: 5px;
    margin-left: 83px;
  }
  .logoWrapper .logoText a {
    display: block;
    width: 100%;
    height: auto;
    z-index: 1000;
    opacity: 0.96;
    /* transform: rotateZ(-1deg); */
  }
  .logoWrapper .logoText a svg {
    height: 24px;
    width: auto;
  }

  /* menu wrapper */
  #menuWrapper {
    position: absolute;
    display: block;
    top: 0px;
    right: 0px;
    z-index: 9000;    
    padding: 1.5em 2em 2em 2em;
    width: 100vw;
    color: white;
    background-color: #FF8C00;
    height: 100vh;
    transform: translateX(100vw);
    transition: none;
    overflow-x: hidden;
    overflow-y: auto;

  }
  #menuWrapper.shown {
    transform: translateX(0px);
    transition: transform 250ms ease-in-out;
  }
  #menuWrapper.notShown {
    transform: translateX(100vw);
    transition: transform 250ms ease-in-out;
  }

  #menuWrapper ul {
    list-style-type: none;
    padding: 0px;
    margin: 0px
  }

  #menuWrapper ul li a {
    color: var(--main-text-color);
    text-decoration: none;
    font-weight: 700;
  }


  .menuBtnWrapper {
    position: absolute;
    top: 1em;
    right: 1em;
    z-index: 9999;
  }

  #menuBtn {
    color: white;
  }
  #menuBtn #burgerIcon {
    color: white; /* #FF8800; */
  }

  #burgerIcon,
  #crossIcon {
    display: block;
  }
  #burgerIcon.hide,
  #crossIcon.hide {
    display: none;
  }

  ul.inlineMenuWrapper {
    list-style-type: none;
    width: 100%;
    display: block;
    margin-bottom: 2em !important;
  }

  ul.inlineMenuWrapper li {
    display: inline-block;
    width: auto;
    margin-right: 0.75em;
    padding-right: 1em;
    border-right: 1px solid black;
  }
  ul.inlineMenuWrapper li:last-of-type {
    border-right: 0px;
  }

  ul.inlineMenuWrapper li a {
    padding: 0px;
    cursor: pointer;
  }

  section.overlaySection {
    display: block;
  }

  section.overlaySection h1 {
    margin-bottom: 0.5em;
  }
  


}


/* ***************************************************** */
/* BREAK MEDIUM */

@media (min-width: 800px) {
  

    /* menu wrapper */
    #menuWrapper {
      width: 50vw;
      height: 50vh;
      transform: translateX(50vw);
    }
    #menuWrapper.shown {
      transform: translateX(0px);
      transition: transform 250ms ease-in-out;
    }
    #menuWrapper.notShown {
      transform: translateX(50vw);
      transition: transform 250ms ease-in-out;
    }

    
}


/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
/* 4. */
@media screen and (min-width: 1024px) {

  

}


/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
/* 4. */
@media screen and (min-width: 1280px) {


}





/* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
/* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
/* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
/* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */

/* roboto-300 - latin */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 300;
  src: url('../fonts/roboto-v20-latin-300.eot'); /* IE9 Compat Modes */
  src: local(''),
       url('../fonts/roboto-v20-latin-300.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/roboto-v20-latin-300.woff2') format('woff2'), /* Super Modern Browsers */
       url('../fonts/roboto-v20-latin-300.woff') format('woff'), /* Modern Browsers */
       url('../fonts/roboto-v20-latin-300.ttf') format('truetype'), /* Safari, Android, iOS */
       url('../fonts/roboto-v20-latin-300.svg#Roboto') format('svg'); /* Legacy iOS */
}
/* roboto-300italic - latin */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 300;
  src: url('../fonts/roboto-v20-latin-300italic.eot'); /* IE9 Compat Modes */
  src: local(''),
       url('../fonts/roboto-v20-latin-300italic.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/roboto-v20-latin-300italic.woff2') format('woff2'), /* Super Modern Browsers */
       url('../fonts/roboto-v20-latin-300italic.woff') format('woff'), /* Modern Browsers */
       url('../fonts/roboto-v20-latin-300italic.ttf') format('truetype'), /* Safari, Android, iOS */
       url('../fonts/roboto-v20-latin-300italic.svg#Roboto') format('svg'); /* Legacy iOS */
}
/* roboto-regular - latin */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/roboto-v20-latin-regular.eot'); /* IE9 Compat Modes */
  src: local(''),
       url('../fonts/roboto-v20-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/roboto-v20-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */
       url('../fonts/roboto-v20-latin-regular.woff') format('woff'), /* Modern Browsers */
       url('../fonts/roboto-v20-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */
       url('../fonts/roboto-v20-latin-regular.svg#Roboto') format('svg'); /* Legacy iOS */
}
/* roboto-italic - latin */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 400;
  src: url('../fonts/roboto-v20-latin-italic.eot'); /* IE9 Compat Modes */
  src: local(''),
       url('../fonts/roboto-v20-latin-italic.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/roboto-v20-latin-italic.woff2') format('woff2'), /* Super Modern Browsers */
       url('../fonts/roboto-v20-latin-italic.woff') format('woff'), /* Modern Browsers */
       url('../fonts/roboto-v20-latin-italic.ttf') format('truetype'), /* Safari, Android, iOS */
       url('../fonts/roboto-v20-latin-italic.svg#Roboto') format('svg'); /* Legacy iOS */
}
/* roboto-500italic - latin */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 500;
  src: url('../fonts/roboto-v20-latin-500italic.eot'); /* IE9 Compat Modes */
  src: local(''),
       url('../fonts/roboto-v20-latin-500italic.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/roboto-v20-latin-500italic.woff2') format('woff2'), /* Super Modern Browsers */
       url('../fonts/roboto-v20-latin-500italic.woff') format('woff'), /* Modern Browsers */
       url('../fonts/roboto-v20-latin-500italic.ttf') format('truetype'), /* Safari, Android, iOS */
       url('../fonts/roboto-v20-latin-500italic.svg#Roboto') format('svg'); /* Legacy iOS */
}
/* roboto-500 - latin */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 500;
  src: url('../fonts/roboto-v20-latin-500.eot'); /* IE9 Compat Modes */
  src: local(''),
       url('../fonts/roboto-v20-latin-500.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/roboto-v20-latin-500.woff2') format('woff2'), /* Super Modern Browsers */
       url('../fonts/roboto-v20-latin-500.woff') format('woff'), /* Modern Browsers */
       url('../fonts/roboto-v20-latin-500.ttf') format('truetype'), /* Safari, Android, iOS */
       url('../fonts/roboto-v20-latin-500.svg#Roboto') format('svg'); /* Legacy iOS */
}
/* roboto-700 - latin */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/roboto-v20-latin-700.eot'); /* IE9 Compat Modes */
  src: local(''),
       url('../fonts/roboto-v20-latin-700.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/roboto-v20-latin-700.woff2') format('woff2'), /* Super Modern Browsers */
       url('../fonts/roboto-v20-latin-700.woff') format('woff'), /* Modern Browsers */
       url('../fonts/roboto-v20-latin-700.ttf') format('truetype'), /* Safari, Android, iOS */
       url('../fonts/roboto-v20-latin-700.svg#Roboto') format('svg'); /* Legacy iOS */
}
/* roboto-700italic - latin */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 700;
  src: url('../fonts/roboto-v20-latin-700italic.eot'); /* IE9 Compat Modes */
  src: local(''),
       url('../fonts/roboto-v20-latin-700italic.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/roboto-v20-latin-700italic.woff2') format('woff2'), /* Super Modern Browsers */
       url('../fonts/roboto-v20-latin-700italic.woff') format('woff'), /* Modern Browsers */
       url('../fonts/roboto-v20-latin-700italic.ttf') format('truetype'), /* Safari, Android, iOS */
       url('../fonts/roboto-v20-latin-700italic.svg#Roboto') format('svg'); /* Legacy iOS */
}
/* roboto-900 - latin */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 900;
  src: url('../fonts/roboto-v20-latin-900.eot'); /* IE9 Compat Modes */
  src: local(''),
       url('../fonts/roboto-v20-latin-900.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/roboto-v20-latin-900.woff2') format('woff2'), /* Super Modern Browsers */
       url('../fonts/roboto-v20-latin-900.woff') format('woff'), /* Modern Browsers */
       url('../fonts/roboto-v20-latin-900.ttf') format('truetype'), /* Safari, Android, iOS */
       url('../fonts/roboto-v20-latin-900.svg#Roboto') format('svg'); /* Legacy iOS */
}
/* roboto-900italic - latin */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 900;
  src: url('../fonts/roboto-v20-latin-900italic.eot'); /* IE9 Compat Modes */
  src: local(''),
       url('../fonts/roboto-v20-latin-900italic.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/roboto-v20-latin-900italic.woff2') format('woff2'), /* Super Modern Browsers */
       url('../fonts/roboto-v20-latin-900italic.woff') format('woff'), /* Modern Browsers */
       url('../fonts/roboto-v20-latin-900italic.ttf') format('truetype'), /* Safari, Android, iOS */
       url('../fonts/roboto-v20-latin-900italic.svg#Roboto') format('svg'); /* Legacy iOS */
}

/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
/* EB Garamond font */

/* eb-garamond-500 - latin */
@font-face {
  font-family: 'EB Garamond';
  font-style: normal;
  font-weight: 500;
  src: url('../fonts/eb-garamond-v12-latin-500.eot'); /* IE9 Compat Modes */
  src: local(''),
       url('../fonts/eb-garamond-v12-latin-500.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/eb-garamond-v12-latin-500.woff2') format('woff2'), /* Super Modern Browsers */
       url('../fonts/eb-garamond-v12-latin-500.woff') format('woff'), /* Modern Browsers */
       url('../fonts/eb-garamond-v12-latin-500.ttf') format('truetype'), /* Safari, Android, iOS */
       url('../fonts/eb-garamond-v12-latin-500.svg#EBGaramond') format('svg'); /* Legacy iOS */
}
/* eb-garamond-700 - latin */
@font-face {
  font-family: 'EB Garamond';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/eb-garamond-v12-latin-700.eot'); /* IE9 Compat Modes */
  src: local(''),
       url('../fonts/eb-garamond-v12-latin-700.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/eb-garamond-v12-latin-700.woff2') format('woff2'), /* Super Modern Browsers */
       url('../fonts/eb-garamond-v12-latin-700.woff') format('woff'), /* Modern Browsers */
       url('../fonts/eb-garamond-v12-latin-700.ttf') format('truetype'), /* Safari, Android, iOS */
       url('../fonts/eb-garamond-v12-latin-700.svg#EBGaramond') format('svg'); /* Legacy iOS */
}
/* eb-garamond-500italic - latin */
@font-face {
  font-family: 'EB Garamond';
  font-style: italic;
  font-weight: 500;
  src: url('../fonts/eb-garamond-v12-latin-500italic.eot'); /* IE9 Compat Modes */
  src: local(''),
       url('../fonts/eb-garamond-v12-latin-500italic.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/eb-garamond-v12-latin-500italic.woff2') format('woff2'), /* Super Modern Browsers */
       url('../fonts/eb-garamond-v12-latin-500italic.woff') format('woff'), /* Modern Browsers */
       url('../fonts/eb-garamond-v12-latin-500italic.ttf') format('truetype'), /* Safari, Android, iOS */
       url('../fonts/eb-garamond-v12-latin-500italic.svg#EBGaramond') format('svg'); /* Legacy iOS */
}
/* eb-garamond-700italic - latin */
@font-face {
  font-family: 'EB Garamond';
  font-style: italic;
  font-weight: 700;
  src: url('../fonts/eb-garamond-v12-latin-700italic.eot'); /* IE9 Compat Modes */
  src: local(''),
       url('../fonts/eb-garamond-v12-latin-700italic.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/eb-garamond-v12-latin-700italic.woff2') format('woff2'), /* Super Modern Browsers */
       url('../fonts/eb-garamond-v12-latin-700italic.woff') format('woff'), /* Modern Browsers */
       url('../fonts/eb-garamond-v12-latin-700italic.ttf') format('truetype'), /* Safari, Android, iOS */
       url('../fonts/eb-garamond-v12-latin-700italic.svg#EBGaramond') format('svg'); /* Legacy iOS */
}



/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */


/* rubik-300 - latin */
@font-face {
  font-family: 'Rubik';
  font-style: normal;
  font-weight: 300;
  src: url('../fonts/rubik-v14-latin-300.eot'); /* IE9 Compat Modes */
  src: local(''),
       url('../fonts/rubik-v14-latin-300.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/rubik-v14-latin-300.woff2') format('woff2'), /* Super Modern Browsers */
       url('../fonts/rubik-v14-latin-300.woff') format('woff'), /* Modern Browsers */
       url('../fonts/rubik-v14-latin-300.ttf') format('truetype'), /* Safari, Android, iOS */
       url('../fonts/rubik-v14-latin-300.svg#Rubik') format('svg'); /* Legacy iOS */
}
/* rubik-500 - latin */
@font-face {
  font-family: 'Rubik';
  font-style: normal;
  font-weight: 500;
  src: url('../fonts/rubik-v14-latin-500.eot'); /* IE9 Compat Modes */
  src: local(''),
       url('../fonts/rubik-v14-latin-500.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/rubik-v14-latin-500.woff2') format('woff2'), /* Super Modern Browsers */
       url('../fonts/rubik-v14-latin-500.woff') format('woff'), /* Modern Browsers */
       url('../fonts/rubik-v14-latin-500.ttf') format('truetype'), /* Safari, Android, iOS */
       url('../fonts/rubik-v14-latin-500.svg#Rubik') format('svg'); /* Legacy iOS */
}
/* rubik-regular - latin */
@font-face {
  font-family: 'Rubik';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/rubik-v14-latin-regular.eot'); /* IE9 Compat Modes */
  src: local(''),
       url('../fonts/rubik-v14-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/rubik-v14-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */
       url('../fonts/rubik-v14-latin-regular.woff') format('woff'), /* Modern Browsers */
       url('../fonts/rubik-v14-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */
       url('../fonts/rubik-v14-latin-regular.svg#Rubik') format('svg'); /* Legacy iOS */
}
/* rubik-600 - latin */
@font-face {
  font-family: 'Rubik';
  font-style: normal;
  font-weight: 600;
  src: url('../fonts/rubik-v14-latin-600.eot'); /* IE9 Compat Modes */
  src: local(''),
       url('../fonts/rubik-v14-latin-600.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/rubik-v14-latin-600.woff2') format('woff2'), /* Super Modern Browsers */
       url('../fonts/rubik-v14-latin-600.woff') format('woff'), /* Modern Browsers */
       url('../fonts/rubik-v14-latin-600.ttf') format('truetype'), /* Safari, Android, iOS */
       url('../fonts/rubik-v14-latin-600.svg#Rubik') format('svg'); /* Legacy iOS */
}
/* rubik-800 - latin */
@font-face {
  font-family: 'Rubik';
  font-style: normal;
  font-weight: 800;
  src: url('../fonts/rubik-v14-latin-800.eot'); /* IE9 Compat Modes */
  src: local(''),
       url('../fonts/rubik-v14-latin-800.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/rubik-v14-latin-800.woff2') format('woff2'), /* Super Modern Browsers */
       url('../fonts/rubik-v14-latin-800.woff') format('woff'), /* Modern Browsers */
       url('../fonts/rubik-v14-latin-800.ttf') format('truetype'), /* Safari, Android, iOS */
       url('../fonts/rubik-v14-latin-800.svg#Rubik') format('svg'); /* Legacy iOS */
}
/* rubik-700 - latin */
@font-face {
  font-family: 'Rubik';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/rubik-v14-latin-700.eot'); /* IE9 Compat Modes */
  src: local(''),
       url('../fonts/rubik-v14-latin-700.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/rubik-v14-latin-700.woff2') format('woff2'), /* Super Modern Browsers */
       url('../fonts/rubik-v14-latin-700.woff') format('woff'), /* Modern Browsers */
       url('../fonts/rubik-v14-latin-700.ttf') format('truetype'), /* Safari, Android, iOS */
       url('../fonts/rubik-v14-latin-700.svg#Rubik') format('svg'); /* Legacy iOS */
}
/* rubik-900 - latin */
@font-face {
  font-family: 'Rubik';
  font-style: normal;
  font-weight: 900;
  src: url('../fonts/rubik-v14-latin-900.eot'); /* IE9 Compat Modes */
  src: local(''),
       url('../fonts/rubik-v14-latin-900.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/rubik-v14-latin-900.woff2') format('woff2'), /* Super Modern Browsers */
       url('../fonts/rubik-v14-latin-900.woff') format('woff'), /* Modern Browsers */
       url('../fonts/rubik-v14-latin-900.ttf') format('truetype'), /* Safari, Android, iOS */
       url('../fonts/rubik-v14-latin-900.svg#Rubik') format('svg'); /* Legacy iOS */
}
/* rubik-300italic - latin */
@font-face {
  font-family: 'Rubik';
  font-style: italic;
  font-weight: 300;
  src: url('../fonts/rubik-v14-latin-300italic.eot'); /* IE9 Compat Modes */
  src: local(''),
       url('../fonts/rubik-v14-latin-300italic.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/rubik-v14-latin-300italic.woff2') format('woff2'), /* Super Modern Browsers */
       url('../fonts/rubik-v14-latin-300italic.woff') format('woff'), /* Modern Browsers */
       url('../fonts/rubik-v14-latin-300italic.ttf') format('truetype'), /* Safari, Android, iOS */
       url('../fonts/rubik-v14-latin-300italic.svg#Rubik') format('svg'); /* Legacy iOS */
}
/* rubik-italic - latin */
@font-face {
  font-family: 'Rubik';
  font-style: italic;
  font-weight: 400;
  src: url('../fonts/rubik-v14-latin-italic.eot'); /* IE9 Compat Modes */
  src: local(''),
       url('../fonts/rubik-v14-latin-italic.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/rubik-v14-latin-italic.woff2') format('woff2'), /* Super Modern Browsers */
       url('../fonts/rubik-v14-latin-italic.woff') format('woff'), /* Modern Browsers */
       url('../fonts/rubik-v14-latin-italic.ttf') format('truetype'), /* Safari, Android, iOS */
       url('../fonts/rubik-v14-latin-italic.svg#Rubik') format('svg'); /* Legacy iOS */
}
/* rubik-500italic - latin */
@font-face {
  font-family: 'Rubik';
  font-style: italic;
  font-weight: 500;
  src: url('../fonts/rubik-v14-latin-500italic.eot'); /* IE9 Compat Modes */
  src: local(''),
       url('../fonts/rubik-v14-latin-500italic.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/rubik-v14-latin-500italic.woff2') format('woff2'), /* Super Modern Browsers */
       url('../fonts/rubik-v14-latin-500italic.woff') format('woff'), /* Modern Browsers */
       url('../fonts/rubik-v14-latin-500italic.ttf') format('truetype'), /* Safari, Android, iOS */
       url('../fonts/rubik-v14-latin-500italic.svg#Rubik') format('svg'); /* Legacy iOS */
}
/* rubik-600italic - latin */
@font-face {
  font-family: 'Rubik';
  font-style: italic;
  font-weight: 600;
  src: url('../fonts/rubik-v14-latin-600italic.eot'); /* IE9 Compat Modes */
  src: local(''),
       url('../fonts/rubik-v14-latin-600italic.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/rubik-v14-latin-600italic.woff2') format('woff2'), /* Super Modern Browsers */
       url('../fonts/rubik-v14-latin-600italic.woff') format('woff'), /* Modern Browsers */
       url('../fonts/rubik-v14-latin-600italic.ttf') format('truetype'), /* Safari, Android, iOS */
       url('../fonts/rubik-v14-latin-600italic.svg#Rubik') format('svg'); /* Legacy iOS */
}
/* rubik-800italic - latin */
@font-face {
  font-family: 'Rubik';
  font-style: italic;
  font-weight: 800;
  src: url('../fonts/rubik-v14-latin-800italic.eot'); /* IE9 Compat Modes */
  src: local(''),
       url('../fonts/rubik-v14-latin-800italic.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/rubik-v14-latin-800italic.woff2') format('woff2'), /* Super Modern Browsers */
       url('../fonts/rubik-v14-latin-800italic.woff') format('woff'), /* Modern Browsers */
       url('../fonts/rubik-v14-latin-800italic.ttf') format('truetype'), /* Safari, Android, iOS */
       url('../fonts/rubik-v14-latin-800italic.svg#Rubik') format('svg'); /* Legacy iOS */
}
/* rubik-700italic - latin */
@font-face {
  font-family: 'Rubik';
  font-style: italic;
  font-weight: 700;
  src: url('../fonts/rubik-v14-latin-700italic.eot'); /* IE9 Compat Modes */
  src: local(''),
       url('../fonts/rubik-v14-latin-700italic.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/rubik-v14-latin-700italic.woff2') format('woff2'), /* Super Modern Browsers */
       url('../fonts/rubik-v14-latin-700italic.woff') format('woff'), /* Modern Browsers */
       url('../fonts/rubik-v14-latin-700italic.ttf') format('truetype'), /* Safari, Android, iOS */
       url('../fonts/rubik-v14-latin-700italic.svg#Rubik') format('svg'); /* Legacy iOS */
}
/* rubik-900italic - latin */
@font-face {
  font-family: 'Rubik';
  font-style: italic;
  font-weight: 900;
  src: url('../fonts/rubik-v14-latin-900italic.eot'); /* IE9 Compat Modes */
  src: local(''),
       url('../fonts/rubik-v14-latin-900italic.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/rubik-v14-latin-900italic.woff2') format('woff2'), /* Super Modern Browsers */
       url('../fonts/rubik-v14-latin-900italic.woff') format('woff'), /* Modern Browsers */
       url('../fonts/rubik-v14-latin-900italic.ttf') format('truetype'), /* Safari, Android, iOS */
       url('../fonts/rubik-v14-latin-900italic.svg#Rubik') format('svg'); /* Legacy iOS */
}



/* lora-regular - latin */
@font-face {
  font-family: 'Lora';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/lora-v17-latin-regular.eot'); /* IE9 Compat Modes */
  src: local(''),
       url('../fonts/lora-v17-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/lora-v17-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */
       url('../fonts/lora-v17-latin-regular.woff') format('woff'), /* Modern Browsers */
       url('../fonts/lora-v17-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */
       url('../fonts/lora-v17-latin-regular.svg#Lora') format('svg'); /* Legacy iOS */
}
/* lora-500 - latin */
@font-face {
  font-family: 'Lora';
  font-style: normal;
  font-weight: 500;
  src: url('../fonts/lora-v17-latin-500.eot'); /* IE9 Compat Modes */
  src: local(''),
       url('../fonts/lora-v17-latin-500.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/lora-v17-latin-500.woff2') format('woff2'), /* Super Modern Browsers */
       url('../fonts/lora-v17-latin-500.woff') format('woff'), /* Modern Browsers */
       url('../fonts/lora-v17-latin-500.ttf') format('truetype'), /* Safari, Android, iOS */
       url('../fonts/lora-v17-latin-500.svg#Lora') format('svg'); /* Legacy iOS */
}
/* lora-700 - latin */
@font-face {
  font-family: 'Lora';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/lora-v17-latin-700.eot'); /* IE9 Compat Modes */
  src: local(''),
       url('../fonts/lora-v17-latin-700.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/lora-v17-latin-700.woff2') format('woff2'), /* Super Modern Browsers */
       url('../fonts/lora-v17-latin-700.woff') format('woff'), /* Modern Browsers */
       url('../fonts/lora-v17-latin-700.ttf') format('truetype'), /* Safari, Android, iOS */
       url('../fonts/lora-v17-latin-700.svg#Lora') format('svg'); /* Legacy iOS */
}
/* lora-600 - latin */
@font-face {
  font-family: 'Lora';
  font-style: normal;
  font-weight: 600;
  src: url('../fonts/lora-v17-latin-600.eot'); /* IE9 Compat Modes */
  src: local(''),
       url('../fonts/lora-v17-latin-600.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/lora-v17-latin-600.woff2') format('woff2'), /* Super Modern Browsers */
       url('../fonts/lora-v17-latin-600.woff') format('woff'), /* Modern Browsers */
       url('../fonts/lora-v17-latin-600.ttf') format('truetype'), /* Safari, Android, iOS */
       url('../fonts/lora-v17-latin-600.svg#Lora') format('svg'); /* Legacy iOS */
}
/* lora-italic - latin */
@font-face {
  font-family: 'Lora';
  font-style: italic;
  font-weight: 400;
  src: url('../fonts/lora-v17-latin-italic.eot'); /* IE9 Compat Modes */
  src: local(''),
       url('../fonts/lora-v17-latin-italic.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/lora-v17-latin-italic.woff2') format('woff2'), /* Super Modern Browsers */
       url('../fonts/lora-v17-latin-italic.woff') format('woff'), /* Modern Browsers */
       url('../fonts/lora-v17-latin-italic.ttf') format('truetype'), /* Safari, Android, iOS */
       url('../fonts/lora-v17-latin-italic.svg#Lora') format('svg'); /* Legacy iOS */
}
/* lora-600italic - latin */
@font-face {
  font-family: 'Lora';
  font-style: italic;
  font-weight: 600;
  src: url('../fonts/lora-v17-latin-600italic.eot'); /* IE9 Compat Modes */
  src: local(''),
       url('../fonts/lora-v17-latin-600italic.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/lora-v17-latin-600italic.woff2') format('woff2'), /* Super Modern Browsers */
       url('../fonts/lora-v17-latin-600italic.woff') format('woff'), /* Modern Browsers */
       url('../fonts/lora-v17-latin-600italic.ttf') format('truetype'), /* Safari, Android, iOS */
       url('../fonts/lora-v17-latin-600italic.svg#Lora') format('svg'); /* Legacy iOS */
}
/* lora-700italic - latin */
@font-face {
  font-family: 'Lora';
  font-style: italic;
  font-weight: 700;
  src: url('../fonts/lora-v17-latin-700italic.eot'); /* IE9 Compat Modes */
  src: local(''),
       url('../fonts/lora-v17-latin-700italic.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/lora-v17-latin-700italic.woff2') format('woff2'), /* Super Modern Browsers */
       url('../fonts/lora-v17-latin-700italic.woff') format('woff'), /* Modern Browsers */
       url('../fonts/lora-v17-latin-700italic.ttf') format('truetype'), /* Safari, Android, iOS */
       url('../fonts/lora-v17-latin-700italic.svg#Lora') format('svg'); /* Legacy iOS */
}
/* lora-500italic - latin */
@font-face {
  font-family: 'Lora';
  font-style: italic;
  font-weight: 500;
  src: url('../fonts/lora-v17-latin-500italic.eot'); /* IE9 Compat Modes */
  src: local(''),
       url('../fonts/lora-v17-latin-500italic.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/lora-v17-latin-500italic.woff2') format('woff2'), /* Super Modern Browsers */
       url('../fonts/lora-v17-latin-500italic.woff') format('woff'), /* Modern Browsers */
       url('../fonts/lora-v17-latin-500italic.ttf') format('truetype'), /* Safari, Android, iOS */
       url('../fonts/lora-v17-latin-500italic.svg#Lora') format('svg'); /* Legacy iOS */
}