/* Import settings.scss with all of the colours etc */
/* Images version */
.slide-panel {
  padding: 2em;
  box-sizing: border-box;
}

.slide-panel .close-nav {
  position: absolute;
  top: 0;
  right: 0;
  left: auto;
  display: block;
  text-decoration: none;
  color: #002B45;
  -webkit-appearance: none;
  border: 0;
  z-index: 1;
  background: 0;
  width: 50px;
  height: 50px;
  line-height: 50px;
  font-size: 1.25em;
  text-align: center;
  padding: 0;
  background: #DDDDDE;
  border-radius: 100em;
  margin: 1em;
}

.slide-panel .slide-panel-content {
  display: block;
}

.slide-panel-content h2.title, .slide-panel-content h2 {
  width: 100%;
  font-size: 1.5em;
  font-weight: bold;
  margin: 1em 0;
}

.slide-panel-content h2.title:first-of-type {
  padding-top: 0;
  padding-bottom: 0;
}

.slide-panel a.button {
  display: block;
  width: 100%;
  background: #DDDDDE;
  color: #002B45;
  padding: 1em;
  margin: 1em 0;
  text-align: center;
  text-decoration: none;
  /*border-radius: var(--border-radius);*/
}

.slide-panel a.button:hover {
  text-decoration: underline;
}

.slide-panel span.material-icons {
  margin-right: 0.25em;
  vertical-align: bottom;
}

/*# sourceMappingURL=panel.css.map */


.fullscreen-blackout {
  background-color: rgba(119, 119, 119, .8);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 800;
  width: 100%;
  height: 100%;
  transition: height 0ms 200ms, opacity 200ms 0ms;
  opacity: 0;
  height: 0;
  overflow: hidden;
}

body.full .fullscreen-blackout {
  z-index: 804;
}

body.blackout {
  overflow: hidden;
}

.blackout .fullscreen-blackout {
  opacity: 0.65;
  height: 100%;
  transition: height 0ms 0ms, opacity 200ms 0ms;
}

.ltie9 .fullscreen-blackout {
  background: url("../../_images/blackout.png") repeat transparent;
}

.slide-panel {
  z-index: 805;
  position: fixed;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  color: #002B45;
  overflow: auto;

  -webkit-transition: all .25s;
  -moz-transition: all .25s;
  -ms-transition: all .25s;
  -o-transition: all .25s;
  transition: all .25s;
}

.slide-panel.open {
  /* Fix for ios Safari z-index issue */
  -webkit-transform: translate3d(0,0,1px);
  transform: translate3d(0,0,1px);
}

.panel-content {
  display: none;
}

.slide-panel.open .panel-content {
  display: block;
}