/*******************************************************************************
 * 
 * jQuery.mb.components: fdInsights
 * version: 1.0
 * Author: pupunzi
 * Creation date: 2019-08-01
 * Licences: MIT, GPL
 * http://www.opensource.org/licenses/mit-license.php
 * http://www.gnu.org/licenses/gpl.html
 *
 ******************************************************************************/

@charset "UTF-8";

@import url('https://fonts.googleapis.com/css?family=Oswald:200,300,400,500,600,700&display=swap');

/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

section * {
  position: relative;
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/*DISCLOSE CLASSES*/
#buttonBar {
  position: absolute;
  bottom: 0;
  right: 10px;
  z-index: 100;
  padding: 20px;
}

#slideIndex {
  position: absolute;
  z-index: 1000;
  right: 0;
  top: 0;
  text-align: right;
  margin: 20px;
}

#slideProgress {
  position: absolute;
  top: 0px;
  right: 0;
  width: 100%;
  height: 5px;
  box-sizing: border-box;
  z-index: 100;
  overflow: hidden;
}

/*LAYOUT*/

body {
  font-family: 'Oswald', sans-serif;
  background: #135553 url("../images/backgrounds/default.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}

h1 {
  font-size: 400%;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
  margin-top: 20px;
}

h2 {
  font-size: 230%;
  font-weight: 700;
  text-transform: uppercase;
}

a {
  color: darkgoldenrod;
  cursor: pointer;
}

p {
  border-top: 1px dotted white;
  padding-top: 10px;
  padding-bottom: 10px;
  font-size: 150%;
  width: 40vw;
  margin-left: 140px;
  text-align: left;
  line-height: 1.4;
}

button {
  border: none;
  margin-top: 10px;
  padding: 12px;
  font-size: 80%;
  color: #ffffff;
  border-radius: 10px;
  background: darkgoldenrod;
  cursor: pointer;
  transition: all .4s;
  outline: none;
}

button:focus {
  border: none;
  outline: none;
}

button:hover {
  background: #3c793c;
  cursor: pointer;
}

section {
  display: none;
  position: absolute;
  width: 100%;
  height: 100%;
  padding: 50px;
  /*background-color: rgba(40, 40, 40, 0.69);*/
  color: #ffffff;
  overflow: auto;
}

section.blocked {
  background: bisque;
  filter: blur(4px);
}

img.achievement-icon {
  width: 150px;
  margin-top: 30px;
}

img.logo {
  z-index: 10;
}

.text-content {
  font-size: 180%;
  line-height: 120%;
}

#achievements-list {
  position: absolute;
  white-space: nowrap;
  z-index: 100;
  left: 0;
  top: 0;
  text-align: center;
  width: 100%;
  background: rgba(0, 0, 0, 0.3);
  padding: 2px;
}

div.achievement-icon-index {
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  display: inline-block;
  filter: grayscale(100%);
  width: 40px;
  height: 40px;
  margin: 5px;
  pointer-events: none;
  opacity: .5;
}


div.achievement-icon-index:not(.active):after {
  content: "";
  background-image: url(../images/padlock.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: bottom right;
  position: absolute;
  width: 70%;
  height: 70%;
  right: 0;
  bottom: 0;
}

div.achievement-icon-index.cover {
  margin-right: 40px;
}

div.achievement-icon-index.active {
  filter: none;
  cursor: pointer;
  pointer-events: auto;
  transition: all .5s;
  opacity: .8;
}

div.achievement-icon-index.active:hover {
  opacity: 1;
}

div.achievement-icon-index.active.selected {
  cursor: pointer;
  pointer-events: auto;
  opacity: 1;
  filter: brightness(140%);
}

.content-wrapper {
  height: calc(100% - 200px);
  overflow-y: auto;
  overflow-x: hidden;
  top: 50px;
}

.full-video {
  position: absolute;
  top: 250px;
  left: 0;
  width: 100%;
  height: calc(100% - 250px);
}

img.background {
  filter: brightness(.8);
}

@media all and (max-height: 900px) {
  h1 {
    font-size: 380%;
  }
}

@media all and (max-width: 1280px) {
  h1 {
    font-size: 380%;
  }
}


@media all and (max-width: 510px) {
  h1 {
    font-size: 180%;
  }

  h2 {
    font-size: 130%;
  }

}



