/* Override defaults here - not in components */

body {
  background-color: #2D2C2D;
}

#app {
  width: 100%;
  height: 100vh;
  position: relative;
  transition: all ease 0.3s;
}

.mobile.mobile-switch#app,
#app.reader {
  overflow: scroll!important;
}

.mobile#app {
  overflow: visible;
}

.logo-loading {
  max-width: 300px;
  max-height: 300px;
}

.nav-bar {
  color: #fff;
  background-color: #232e6d  !important;
}

.nav-bar__title {
  color: #ffffff !important;
}

.nav-bar__link {
  color: #fff !important;
  border-color: #232e6d  !important;
}

.nav-bar__link--active,
.search-button,{
  color: #fff !important;
  background-color: #232e6d !important;
  border-color: #232e6d !important;
}

.page-dots {
  display: none;
}

.currentPage .addContentLink {
  visibility: visible;
}

.abs {
  position: absolute;
}

.gstart {
  opacity: 0;
}

.pointer {
  cursor: pointer;
}

.noOverflow {
  overflow: hidden;
}

html[data-platform='Win32'] .tabletOnly,
html[data-platform='MacIntel'] .tabletOnly {
  display: none;
}

html[data-platform='iPhone'] .desktopOnly,
html[data-platform='iPad'] .desktopOnly,
html[data-platform*='arm'] .desktopOnly,
html[data-platform*='Android'] .desktopOnly {
  display: none;
}

.hover {
  opacity: 0;
}

.hover:hover {
  opacity: 1;
}

.hidden {
  opacity: 0 !important;
}

.visible{
  display:block;
}

.d-hidden{
  display:none;
}

#pg3read{
  padding-top: 30px;
  background-color: #ffffff;
}

#pg3read p{
  font-size: 1.1rem;
  padding: 0px 45px;
}

#pg3close{
  position:absolute;
  top: 10px;
  left: 100%;
  margin-left: -58px;
  cursor: pointer;
  width:36px;
  height:36px;
}

#pg31read{
  padding-top: 30px;
  background-color: #ffffff;
}

#pg31read p{
  font-size: 1.1rem;
  padding: 0px 45px;
}

#pg31close{
  position:absolute;
  top: 10px;
  left: 100%;
  margin-left: -58px;
  cursor: pointer;
  width:36px;
  height:36px;
}

#pg35read{
  padding-top: 30px;
  background-color: #ffffff;
}

#pg35read p{
  font-size: 1.1rem;
  padding: 0px 45px;
}

#pg35close{
  position:absolute;
  top: 10px;
  left: 100%;
  margin-left: -58px;
  cursor: pointer;
  width:36px;
  height:36px;
}

.readOverlay {
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background: rgb(255, 255, 255);
  z-index: 100000;
  transition: all 0.3s ease;
  overflow-y: scroll;
}

.noclick {
  pointer-events: none !important;
}

.animatedpulse {
  -webkit-animation-duration: 5s;
  animation-duration: 5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -ms-transform-origin: 50% 50%;
  /* IE 9 */
  -webkit-transform-origin: 50% 50%;
  /* Chrome, Safari, Opera */
  transform-origin: 50% 50%;
}

.standardTransition {
  -moz-transition: 0.5s opacity ease-in-out 0s;
  -webkit-transition: 0.5s opacity ease-in-out 0s;
  -o-transition: 0.5s opacity ease-in-out 0s;
  -ms-transition: 0.5s opacity ease-in-out 0s;
  transition: 0.5s opacity ease-in-out 0s;
}

@-webkit-keyframes pulse {
  0%,
  60%,
  80%,
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  70%,
  90% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
}

@keyframes pulse {
  0%,
  60%,
  80%,
  100% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
  70%,
  90% {
    -webkit-transform: scale(1.2);
    -ms-transform: scale(1.2);
    transform: scale(1.2);
  }
}

.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
  -webkit-animation-iteration-count: infinite;
  -moz-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-delay: 1s;
  /* Safari and Chrome */
  animation-delay: 1s;
}

.halfScale {
  -ms-transform: scale(0.5);
  -webkit-transform: scale(0.5);
  transform: scale(0.5);
  -ms-transform-origin: top left;
  -webkit-transform-origin: top left;
  transform-origin: top left;
}

.halfScaleC {
  -ms-transform: scale(0.5);
  -webkit-transform: scale(0.5);
  transform: scale(0.5);
  -ms-transform-origin: center center;
  -webkit-transform-origin: center center;
  transform-origin: center center;
}

.halfScaleR {
  -ms-transform: scale(0.5);
  -webkit-transform: scale(0.5);
  transform: scale(0.5);
  -ms-transform-origin: top right;
  -webkit-transform-origin: top right;
  transform-origin: top right;
}

.halfScaleB {
  -ms-transform: scale(0.5);
  -webkit-transform: scale(0.5);
  transform: scale(0.5);
  -ms-transform-origin: bottom left;
  -webkit-transform-origin: bottom left;
  transform-origin: bottom left;
}

.halfScaleBR {
  -ms-transform: scale(0.5);
  -webkit-transform: scale(0.5);
  transform: scale(0.5);
  -ms-transform-origin: bottom right;
  -webkit-transform-origin: bottom right;
  transform-origin: bottom right;
}

.centre {
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  position: absolute;
}

.contentOverlay {
  width: 100%;
  height: 100%;
  background: rgb(0, 0, 0);
  z-index: 11;
  transition: all 0.3s ease;
}

#app.mobile-switch.reader img {
  max-width: 100%;
  display: block;
  margin: auto;
  pointer-events: none;
}

#app.mobile-switch.reader .mobile-page {
  max-width: 800px;
  margin: auto;
  padding: 100px 15px;
  font-family: 'FrutigerLTPro-Light'
}

#app.mobile-switch .nav-bar,
.reader .nav-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}

#app.mobile-switch.reader .mobile-header {
  font-size: 1.6rem;
  font-weight:600;
  max-width: 200px;
  padding: 10px;
  color: white;
  font-family: 'FrutigerLTPro-Light'
}

#app.mobile-switch.reader h2,
#app.mobile-switch.reader h4 {
  font-family: 'FrutigerLTPro-Light'
}

.blue header {
  background-color: #005fa4;
}

.green header {
  background-color: #006731;
}

.blue h2 {
  color: #005fa4;
}

.green h2 {
  color: #006731;
}

@font-face {
  font-family: 'FrutigerLTPro-Light';
  src: url('/181/fr/static/_content/FrutigerLTPro-Light.eot?#iefix') format('embedded-opentype'),  url('/181/fr/static/_content/FrutigerLTPro-Light.otf')  format('opentype'),
	     url('/181/fr/static/_content/FrutigerLTPro-Light.woff') format('woff'), url('/181/fr/static/_content/FrutigerLTPro-Light.ttf')  format('truetype'), url('/181/fr/static/_content/FrutigerLTPro-Light.svg#FrutigerLTPro-Light') format('svg');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'FrutigerLTPro-Black';
  src: url('/181/fr/static/_content/FrutigerLTPro-Black.eot?#iefix') format('embedded-opentype'),  url('/181/fr/static/_content/FrutigerLTPro-Black.otf')  format('opentype'),
	     url('/181/fr/static/_content/FrutigerLTPro-Black.woff') format('woff'), url('/181/fr/static/_content/FrutigerLTPro-Black.ttf')  format('truetype'), url('/181/fr/static/_content/FrutigerLTPro-Black.svg#FrutigerLTPro-Light') format('svg');
  font-weight: normal;
  font-style: normal;
}

.frutiger {
  font-family: 'FrutigerLTPro-Black';
}

@media (min-width: 600px) {
  #app.mobile-switch.reader .mobile-page {
    padding: 100px 50px;
  }
}