@charset "UTF-8";
/*----------------------------------------------------------------------------------------------------------------------------
    IMPORT + VARIABLES + MIXINS
------------------------------------------------------------------------------------------------------------------------------*/

@import url('https://fonts.googleapis.com/css?family=IBM+Plex+Mono:400i,700i');
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; }

em {
	font-style: italic;
}

@font-face {
    font-family: 'throne_vectorregular';
    src: url('../font/throne_vector-webfont.woff2') format('woff2'),
         url('../font/throne_vector-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

/*! Pushy - v1.0.0 - 2016-3-1
* Pushy is a responsive off-canvas navigation menu using CSS transforms & transitions.
* https://github.com/christophery/pushy/
* by Christopher Yee */
/* Menu Appearance */
.pushy {
  position: fixed;
  width: 100%;
  max-width: 500px;
  height: 100%;
  top: 0;
  z-index: 9999;
  background: #393b3d;
  overflow: auto;
  visibility: hidden;
  -webkit-overflow-scrolling: touch;
  /* enables momentum scrolling in iOS overflow elements */ }
  @media screen and (max-width: 500px) {
    .pushy {
      max-width: 100%; } }
  .pushy a {
    display: block;
    color: #b3b3b1;
    padding: 15px 30px;
    text-decoration: none;
    outline: 0; }
  .pushy a:hover {
    color: #FFF; }
  .pushy ul:first-child {
    margin-top: 10px; }
  .pushy.pushy-left {
    left: 0; }
  .pushy.pushy-right {
    right: 0; }

/*----------------------------------------------------------------------------------------------------------------------------
    MENU MOVEMENT  
------------------------------------------------------------------------------------------------------------------------------*/
.pushy-right {
  -webkit-transform: translate3d(500px, 0, 0);
  -ms-transform: translate3d(500px, 0, 0);
  transform: translate3d(500px, 0, 0); }
  @media screen and (max-width: 700px) {
    .pushy-right {
      -webkit-transform: translate3d(100%, 0, 0);
      -ms-transform: translate3d(100%, 0, 0);
      transform: translate3d(100%, 0, 0); } }

.pushy-open-right #container,
.pushy-open-right .push {
  -webkit-transform: translate3d(-500px, 0, 0);
  -ms-transform: translate3d(-500px, 0, 0);
  transform: translate3d(-500px, 0, 0); }
  @media screen and (max-width: 700px) {
    .pushy-open-right #container,
    .pushy-open-right .push {
      -webkit-transform: translate3d(-100%, 0, 0);
      -ms-transform: translate3d(-100%, 0, 0);
      transform: translate3d(-100%, 0, 0); } }

.pushy-open-right .pushy {
  -webkit-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0); }

/*----------------------------------------------------------------------------------------------------------------------------
    MENU TRANSITION  
------------------------------------------------------------------------------------------------------------------------------*/
#container,
.pushy,
.push {
  transition: transform 0.2s cubic-bezier(0.16, 0.68, 0.43, 0.99); }

/*----------------------------------------------------------------------------------------------------------------------------
    SITE OVERLAY 
------------------------------------------------------------------------------------------------------------------------------*/
.site-overlay {
  display: none; }

.pushy-open-left .site-overlay,
.pushy-open-right .site-overlay {
  display: block;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 9998;
  background-color: rgba(255, 255, 255, 0.7);
  -webkit-animation: fade 500ms;
  animation: fade 500ms; }

@keyframes fade {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }

@-webkit-keyframes fade {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }

/*----------------------------------------------------------------------------------------------------------------------------
    GLOBAL
------------------------------------------------------------------------------------------------------------------------------*/
html, body {
  -webkit-tap-highlight-color: transparent;
  /* disable webkit tap highlight */
  overflow-x: hidden; }

*, *:before, *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }

.clear {
  font-size: 0em;
  line-height: 0em;
  height: 0px;
  position: relative;
  clear: both; }

body {
  font-weight: 400;
  font-style: normal;
  background-color: rgba(214,184,40,0.9);
}

body::before {
	animation: grain 8s steps(10) infinite;
	-moz-animation: grain 8s steps(10) infinite;
  -webkit-animation: grain 8s steps(10) infinite;
	background-image: url(../img/noise.png);
	content: '';
	height: 300%;
	left: -50%;
	opacity: 1;
	position: fixed;
	top: -100%;
	width: 300%;
}

@keyframes grain {
  0%, 100% { transform:translate(0, 0); }
  10% { transform:translate(-5%, -10%); }
  20% { transform:translate(-15%, 5%); }
  30% { transform:translate(7%, -25%); }
  40% { transform:translate(-5%, 25%); }
  50% { transform:translate(-15%, 10%); }
  60% { transform:translate(15%, 0%); }
  70% { transform:translate(0%, 15%); }
  80% { transform:translate(3%, 35%); }
  90% { transform:translate(-10%, 10%); }
}


hr {
  border: none;
  margin: 0; }

.bounce {
  -moz-animation: bounce 3s infinite;
  -webkit-animation: bounce 3s infinite;
  animation: bounce 3s infinite; }

@keyframes bounce {
  0%, 40% {
    transform: translateY(0); }
  50%, 58% {
    transform: translateY(10px); }
  66% {
    transform: translateY(0); }
  70% {
    transform: translateY(0); }
  100% {
    transform: translateY(0); } }

/*----------------------------------------------------------------------------------------------------------------------------
    TYPOGRAPHY
------------------------------------------------------------------------------------------------------------------------------*/
h1, h2, h3, h4, h5, h6 {

  font-style: normal;
  text-align: center;
  color: #0C0C0C; }

h1, h2{
	  font-family: 'throne_vectorregular';
  font-weight: 500;
  text-transform: uppercase;
	}

h3, h4  {
  text-align: left;
  font-size: 16px;
  line-height: 17px;
  text-transform: uppercase;
  margin-top: 5px;
  padding-right: 4px; }

h5, h6 {
  text-align: left;
  font-size: 14px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

p, a {
  font-size: 16px;
  line-height: 19px;
  color: #393b3d;
  margin-bottom: 1em;
  text-align: center;
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 400;
  letter-spacing: 1px; }
strong {
	font-weight:700;
}
a {
  text-decoration: underline; }
  a:hover {
    text-decoration: none; }
  a.invisible-link {
    text-decoration: none; }
  a.invisible-link:hover {
    cursor: pointer; }

.numero {
  font-size: 60%;
  vertical-align: baseline;
  position: relative;
  top: -5px;
  font-family: 'Gotham A', 'Gotham B';
  font-weight: 700;
  font-style: normal;
  text-shadow: 0 0 0 #000;
  background: url(../img/numero.png) 1px bottom no-repeat;
  padding-bottom: 1px; }

@media screen and (max-width: 760px) {
  .numero {
    top: -4px;
    padding-bottom: 2px;
    background-image: url(../img/numero-sm.png) 0 bottom no-repeat; } }

::selection {
  background: #dedbd1;
  /* WebKit/Blink Browsers */ }

::-moz-selection {
  background: #dedbd1;
  /* Gecko Browsers */ }

/*----------------------------------------------------------------------------------------------------------------------------
    BASIC "PAGE" SECTION STUFF
------------------------------------------------------------------------------------------------------------------------------*/
.wrap {
  position: relative;
  padding-left: 10px;
  padding-right: 10px;
  overflow: hidden;
  max-width: 880px;
  margin: 0 auto; }
  .wrap.expand-med {
    max-width: 980px; }
  .wrap.expand-max {
    max-width: 1200px; }

@media screen and (min-width: 300px) {
  .wrap {
    padding-left: 20px;
    padding-right: 20px; } }

@media screen and (min-width: 400px) {
  .wrap {
    padding-right: 40px; } }

@media screen and (min-width: 450px) {
  .wrap {
    padding-right: 20px; } }

@media screen and (min-width: 736px) {
  .wrap {
    padding-right: 40px; } }

@media screen and (min-width: 950px) {
  .wrap {
    padding-right: 20px; } }

.center-vert {
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%); }

/* STYLES USED REPEATEDLY
    ------------------------------------------- */
.center-horiz, .greet-screen .via-logo, .greet-screen .sam-logo {
  margin: 0 auto;
  display: block; }

.sam-borders, .play-wrap .audio-buttons span, .track-details, .track-controls, .progress-wrapper {
  border: 2px solid #393b3d; }

.no-right-border, .play-wrap .audio-buttons span.icon-download {
  border-right: inherit; }

.no-bottom-border {
  border-bottom: inherit; }

@media screen and (min-width: 760px) {
  .sam-borders, .play-wrap .audio-buttons span, .track-details, .track-controls, .progress-wrapper {
    border-width: 2px; } }

/*----------------------------------------------------------------------------------------------------------------------------
        BUTTONS
    ------------------------------------------------------------------------------------------------------------------------------*/
.button-lg {
  display: inline-block;
  padding-bottom: 30px;}
  .button-lg i {
    padding-right: 5px; }
  .button-lg a {
    border: 2px solid #393b3d;
    padding: 6px 22px;
    font-size: 14px;
    color: #393b3d;
    text-decoration: none;
    text-transform: uppercase;
    font-family: "myriad-pro",sans-serif;
    font-style: normal;
    font-weight: 600;
    -webkit-transition: all 0.05s ease-in-out;
    -moz-transition: all 0.05s ease-in-out;
    -o-transition: all 0.05s ease-in-out;
    -ms-transition: all 0.05s ease-in-out;
    transition: all 0.05s ease-in-out; }
    @media screen and (max-width: 500px) {
      .button-lg {
  display: block;
text-align: center;
		padding-bottom: 20px;}
		.button-lg a {
        font-size: 15px;
        line-height: 35px;}
		}
    @media screen and (max-width: 300px) {
      .button-lg a {
        margin: 0 1px;
		text-align: center;
		font-size: 12px;} }
  .button-lg:hover a {
    color: #f3f2ec;
    background: #393b3d; }

  .button-lg.inverse a {
    border: 2px solid #393b3d;
    padding: 6px 22px;
    font-size: 18px;
    color: #f3f2ec;
	background: #393b3d;  
    text-decoration: none;
    text-transform: uppercase;
    font-family: "myriad-pro",sans-serif;
    font-style: normal;
    font-weight: 600;
    -webkit-transition: all 0.05s ease-in-out;
    -moz-transition: all 0.05s ease-in-out;
    -o-transition: all 0.05s ease-in-out;
    -ms-transition: all 0.05s ease-in-out;
    transition: all 0.05s ease-in-out; }
    @media screen and (max-width: 500px) {
      .button-lg.inverse a {
        font-size: 15px;
        line-height: 15px; } }
    @media screen and (max-width: 300px) {
      .button-lg.inverse a {
        margin: 0 1px;
		text-align: center;
		font-size: 12px;} }
  .button-lg.inverse:hover a {
    color: #393b3d;
    background: transparent; }

.button-lg.left {
	display: block;
	width:50%;
	float: left;
	text-align: right;
	padding-right: 5px;
}
.button-lg.right {
	display: block;
	width:50%;
	float: left;
	text-align: left;
	padding-left: 5px;
}
@media screen and (max-width: 650px) {
	.button-lg.left {
	width:100%;
	float:none;
	text-align: center;
	margin-bottom: 10px;
}
.button-lg.right {
	width:100%;
	float: none;
	text-align: center;
	margin-top: 10px;
}
}

.pulse {
	transform: scale(1);
	animation: pulse 2s;
	animation-iteration-count: 20;
}
@keyframes pulse {
	0% {
		transform: scale(0.75);
		background-color: rgba(255,255,255,0.5);
	}

	70% {
		transform: scale(1);
		background-color: rgba(255,255,255,0);
	}

	100% {
		transform: scale(0.75);
		background-color: rgba(255,255,255,0.5);
	}
}

.fa.fa-pause {
	animation: none;
}

/*----------------------------------------------------------------------------------------------------------------------------
        GREET SECTION
    ------------------------------------------------------------------------------------------------------------------------------*/
.corner {
  position: absolute;
  width: 135px;
  height: 90px;
  background-image: url(../img/corner-deco.svg);
  background-repeat: no-repeat;
  background-size: 135px;
  opacity: 0; }
  .corner.NW {
    left: 11px;
    top: 11px;
    background-position: left -72px top -52px; }
  .corner.NE {
    right: 11px;
    top: 11px;
    background-position: right -72px top -52px; }
  .corner.SW {
    left: 11px;
    bottom: 11px;
    background-position: left -72px bottom -52px; }
  .corner.SE {
    right: 11px;
    bottom: 11px;
    background-position: right -72px bottom -52px; }
  @media screen and (min-width: 400px) {
    .corner {
      background-size: 189px;
      opacity: 1; }
      .corner.NW {
        background-position: left -98px top -71px; }
      .corner.NE {
        background-position: right -98px top -71px; }
      .corner.SW {
        background-position: left -98px bottom -71px; }
      .corner.SE {
        background-position: right -98px bottom -71px; } }
  @media screen and (min-width: 750px) {
    .corner {
      background-size: 221px; }
      .corner.NW {
        background-position: left -115px top -82px; }
      .corner.NE {
        background-position: right -115px top -82px; }
      .corner.SW {
        background-position: left -115px bottom -82px; }
      .corner.SE {
        background-position: right -115px bottom -82px; } }
  @media screen and (min-width: 1000px) {
    .corner {
      background-size: 270px; }
      .corner.NW {
        background-position: left -139px top -101px; }
      .corner.NE {
        background-position: right -139px top -101px; }
      .corner.SW {
        background-position: left -139px bottom -101px; }
      .corner.SE {
        background-position: right -139px bottom -101px; } }
  @media screen and (max-width: 300px) {
    .corner {
      background: none; } }
  @media screen and (max-height: 750px) {
    .corner {
      background: none; } }

.greet-screen {
  position: fixed;
	/*background-image:url(../img/texture.png);
	background-size: cover;*/
  z-index: 1;
  height: 100vh;
  text-align: center;
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  transform-style: preserve-3d;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0; }
  @media screen and (max-height: 750px) {
    .greet-screen {
      position: relative;
	  }
	  
}
  .greet-screen .message {
    position: relative;
    top: 50%;
    transform: translateY(-50%);}
	.greet-screen .message p {
    color: #393b3d;
}

    @media screen and (max-height: 750px) {
      .greet-screen .message {
      
        margin-top: 25px;
        margin-bottom: 0px; } }
  .greet-screen .via-logo {
    width: 8%;
    min-width: 40px;
    max-width: 48px;
    margin-bottom: 20px; }
  .greet-screen .sam-logo {
    width: 50%;
    min-width: 220px;
    max-width: 450px;
    margin: -10px auto; }
  .greet-screen .prompter {
    position: absolute;
    background: #393b3d;
    border-radius: 50%;
    left: 50%;
    bottom: 25px;
    width: 50px;
    height: 50px;
    margin-left: -30px; }
    .greet-screen .prompter img {
      margin-top: -5px;
      width: 100%; }
    /**@media screen and (min-width: 400px) {
      .greet-screen .prompter {
        width: 60px;
        height: 60px; } }
    @media screen and (min-width: 750px) {
      .greet-screen .prompter {
        width: 70px;
        height: 70px;
        margin-left: -35px; } }**/
    @media screen and (min-width: 1000px) {
      .greet-screen .prompter {
		  display: none; }}
    @media screen and (max-height: 750px) {
      .greet-screen .prompter {
        display: none; } }
  .greet-screen p {
    width: 85%;
    max-width: 965px;
    padding: 0 75px;
    font-size: 20px;
    line-height: 30px;
    margin: 0 auto 38px; }
    @media screen and (max-width: 1100px) {
      .greet-screen p {
        width: 100%;
        line-height: 27px; } }
    @media screen and (max-width: 740px) {
      .greet-screen p {
        font-size: 20px; } }
    @media screen and (max-width: 500px) {
      .greet-screen p {
        padding: 0 35px;
        font-size: 18px;
        line-height: 22px; } }
  @media screen and (max-width: 300px) {
    .greet-screen .via-logo {
      width: 20%;
      min-width: inherit; }
    .greet-screen .sam-logo {
      width: 100%;
      min-width: inherit;
      padding-left: 5%;
      padding-right: 5%; }
    .greet-screen p {
      font-size: 13px;
      line-height: 15px; } }

	.greet-screen .instruction p, .greet-screen .instruction p a  {
	font-size: 13.3px;	
		width:100%;
		max-width: 460px;
}

/*----------------------------------------------------------------------------------------------------------------------------
        TOP MESSAGE
    ------------------------------------------------------------------------------------------------------------------------------*/
.top-message {
  display: none;
  z-index: 2;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #393b3d;
  height: 20px;
  border-bottom: 1px dotted rgba(243, 242, 236, 0.8); }
  .top-message p, .top-message p a {
    color: #f3f2ec;
    font-size: 10px;
    line-height: 20px;
    letter-spacing: 0px;
    text-transform: uppercase;
    text-decoration: none;
    font-family: 'Gotham A', 'Gotham B';
    font-weight: 500;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale; }
  .top-message p a {
    display: inline-block;
    position: relative; }
    .top-message p a::after {
      position: absolute;
      display: inline-block;
      width: 100%;
      height: 1em;
      content: '';
      left: 0;
      border-bottom: 1px dotted #f3f2ec;
      margin-top: 7px;
      -webkit-transition: all 0.15s ease-in-out;
      -moz-transition: all 0.15s ease-in-out;
      -o-transition: all 0.15s ease-in-out;
      -ms-transition: all 0.15s ease-in-out;
      transition: all 0.15s ease-in-out; }
    .top-message p a:hover::after {
      margin-top: 0;
      border-bottom: 1px dotted transparent; }
  @media screen and (min-width: 400px) {
    .top-message {
      display: block; } }
  @media screen and (min-width: 750px) {
    .top-message {
      height: 22px; }
      .top-message p, .top-message p a {
        font-size: 11px;
        line-height: 22px;
        letter-spacing: 1px; } }

/*----------------------------------------------------------------------------------------------------------------------------
    .SINGLE CHAPTERS 
------------------------------------------------------------------------------------------------------------------------------*/
.cover {
  height: 100vh; }
  @media screen and (max-height: 750px) {
    .cover {
      height: 0; } }

#latest + .single-chapter::after {
  display: block;
  position: absolute;
  content: "";
  top: -5px;
  width: 100%;
  height: 5px;
  background-image: linear-gradient(to top, rgba(11, 11, 11, 0.1), rgba(243, 242, 236, 0)); }
  @media screen and (min-width: 400px) {
    #latest + .single-chapter::after {
      top: -10px;
      height: 10px; } }

.single-chapter {
  position: relative;
  z-index: 3;
  background: #f3f2ec url(../img/bg-texture.jpg) 0 0 repeat; }
  .single-chapter:before {
    display: block;
    position: absolute;
    width: 100%;
    height: 35px;
    content: "";
    border-top: 1px solid rgba(57, 59, 61, 0.06);
    background-image: linear-gradient(rgba(0, 0, 0, 0.035), transparent 35px); }

.single-chapter.chap1 {
	background-image: url("../img/production/ep1/ep1-1.jpg");
	background-size: cover;
	background-position: center;
}
.single-chapter.chap2 {
	background-image: none;
	background-size: cover;
	background-position: center;
}
.single-chapter.chap3 {
	background-image: url("../img/production/ep3/ep3-1.jpg");
	background-size: cover;
	background-position: center;
}
.single-chapter.chap4 {
	background-image:none;
	background-size: cover;
	background-position: center;
}
.single-chapter.chap5 {
	background-image: url("../img/production/ep5/ep5-1.jpg");
	background-size: cover;
	background-position: center;
}
.single-chapter.chap6 {
	background-image: none;
	background-size: cover;
	background-position: center;
}
.single-chapter.chap7 {
	background-image: url("../img/production/ep7/ep7-1.jpg");
	background-size: cover;
	background-position: center;
}
.single-chapter.chap8 {
	background-image: none;
	background-size: cover;
	background-position: center;
}
.single-chapter.chap9 {
	background-image: url("../img/production/ep9/ep9-1.jpg");
	background-size: cover;
	background-position: center;
}
.single-chapter.chap1:before, .single-chapter.chap2:before, .single-chapter.chap3:before, .single-chapter.chap4:before, .single-chapter.chap5:before, .single-chapter.chap6:before, .single-chapter.chap7:before, .single-chapter.chap8:before, .single-chapter.chap9:before {
	background-color: rgba(255,255,255,0.8);
	height: 100%;
}

.single-chapter.finale{
	background: #393b3d;
	color: #fafafa;
	padding-bottom: 100px;	
}
.single-chapter.finale h1, .single-chapter.finale h2, .single-chapter.finale h3, .single-chapter.finale h4, .single-chapter.finale p{
	color: #fafafa;
}
.single-chapter.finale h3, .single-chapter.finale h4, .single-chapter.finale p, .single-chapter h3, .single-chapter h4, .single-chapter p{
font-family: "myriad-pro",sans-serif;	
}
.single-chapter.finale h4 {
	font-weight: bold;
	text-decoration: none;
}
.finale a {
	color: #fafafa;
	font-style: italic;
	text-decoration: underline;
}
.finale a:hover{
	color: #393b3d;
	text-decoration: none;
}
.finale a .title {
	text-decoration: none;
}
.single-chapter.finale h2, .single-chapter.finale p {
	text-align: left;
}
.single-chapter.finale p {
	font-family: "myriad-pro",sans-serif;	
	line-height: 1.6em;
}
.single-chapter.finale p span{
	font-style: italic;
	font-size: 12px;
}
.single-chapter.finale p span a{
	font-style: italic;
	font-size: 12px;
	line-height: 1em;
}
.single-chapter.finale p span a:hover{
	color: #fafafa;
	text-decoration: none;
}
.finale .play-wrap .audio-buttons span {
    border: 2px solid #fafafa;
}
.finale .play-wrap .audio-buttons span a:hover {
	background-color:#fafafa;
	color: #393b3d;
	border-color: #fafafa;
}
.finale .button-lg a {
    border: 2px solid #fafafa;
    padding: 6px 22px;
    font-size: 18px;
    color: #fafafa;
    text-decoration: none;
    text-transform: uppercase;
    font-family: "myriad-pro",sans-serif;
    font-style: normal;
    font-weight: 600;
    -webkit-transition: all 0.05s ease-in-out;
    -moz-transition: all 0.05s ease-in-out;
    -o-transition: all 0.05s ease-in-out;
    -ms-transition: all 0.05s ease-in-out;
    transition: all 0.05s ease-in-out;
}
.finale .button-lg a:hover {
    color: #393b3d;
    background: #f3f2ec; }
.finale .img-responsive {
	width: 100%;
}
.finale .img-responsive-episode {
	width: 100%;
	margin: 0 auto;
}
.finale .img-small {
	max-width: 50px;
}
 @media screen and (max-width: 500px) {
	 .finale .button-lg a {
    border: 2px solid #fafafa;
    padding: 6px 22px;
    font-size: 14px;
		 margin: 0 auto;
		 text-align: center;
	 }
}
  @media screen and (min-width: 800px) {
    .single-chapter {
      /*
            margin-top: 20px;
            margin-bottom: 40px;
*/ } }
  @media screen and (min-width: 1200px) {
    .single-chapter {
      /*
            margin-top: 40px;
            margin-bottom: 80px;
*/ } }

.single-chapter .warning{
	background: #969595;
	color: #fafafa;
	padding-bottom: 100px;	
}

#chapter01 {
  padding-bottom: 20px; }

.tn-list{
	display: inline-flex;
	width: 100%;
}
.tn-list a img {
	flex-direction: row;
	width: 100%;
	height: 200px;
	object-fit: cover;	
	object-position: center;
	text-decoration: none;
}
.tn-list a img{
	transition: all 0.2s ease-in-out;
	text-decoration: none;
}
.tn-list a img:hover {
	opacity: 0.5;
}
.tn-list a {
	text-decoration: none;
}

@media screen and (max-width: 760px) {
.tn-list{
	display: inline-flex;
	width: 100%;
	flex-direction: column;
}
}


/* DATELINE - INCLUDES CHAPTER NO. & CHAPTER ICON   
    ------------------------------------------- */
.dateline {
  margin: 50px 5% 0; }
  .dateline .textbox {
    float: left;
    width: 75%;
    max-width: 175px; }
    .dateline .textbox h3 {
      text-align: left; }
    .dateline .textbox p {
      text-align: left;
      font-size: 14px;
      line-height: 18px; }
  .dateline img {
    display: none;
    float: right;
    margin-top: -10px;
    float: right;
    width: 50px; }
  @media screen and (min-width: 300px) {
    .dateline .textbox h3,
    .dateline .textbox p {
      text-align: center; }
    .dateline img {
      display: block; } }

/* DATELINE MEDIA QUERIES  
    ------------------------------------------- */
@media screen and (min-width: 760px) {
  .dateline {
    margin-top: 80px;
    margin-left: 10%;
    margin-right: 10%; }
    .dateline .textbox h3 {
      font-size: 18px;
      letter-spacing: 2px; }
    .dateline .textbox p {
      font-size: 16px;
      letter-spacing: 2px;
      line-height: 30px; }
    .dateline img {
      margin-top: -30px;
      width: 110px; } }

/* AUDIO BUTTONS: DOWNLOAD | PLAY  
    ------------------------------------------- */
.play-wrap .audio-buttons {
  overflow: hidden; }
  .play-wrap .audio-buttons i {
    vertical-align: baseline;
    position: relative;
    top: -1px; }
  .play-wrap .audio-buttons span {
    float: left;
    height: 40px; }
    .play-wrap .audio-buttons span.icon-download {
      display: block; }
      .play-wrap .audio-buttons span.icon-download i {
        width: 16px;
        background: url(../img/border.svg) center bottom repeat-x;
        padding-bottom: 2px;
        font-size: 16px; }
      .finale .play-wrap .audio-buttons span.icon-download i {
        width: 16px;
        background: url(../img/border-dark.svg) center bottom repeat-x;
        padding-bottom: 2px;
        font-size: 16px; }
    .play-wrap .audio-buttons span a {
      display: block;
      height: 38px;
      font-size: 14px;
      line-height: 38px;
      text-transform: uppercase;
      text-decoration: none;
      font-family: 'Gotham A', 'Gotham B';
      font-weight: 500;
      font-style: normal;
      -webkit-transition: all 0.05s ease-in-out;
      -moz-transition: all 0.05s ease-in-out;
      -o-transition: all 0.05s ease-in-out;
      -ms-transition: all 0.05s ease-in-out;
      transition: all 0.05s ease-in-out; }
      .play-wrap .audio-buttons span a:hover {
        background: #393b3d;
        color: #f3f2ec; }
      .play-wrap .audio-buttons span a:hover > i.fa-long-arrow-down {
        background: url(../img/border-white.svg) center bottom repeat-x; }
		     .finale .play-wrap .audio-buttons span a:hover > i.fa-long-arrow-down {
        background: url(../img/border.svg) center bottom repeat-x; }
      .play-wrap .audio-buttons span a:active i {
        top: 0; }

.play-wrap .all-play .audio-buttons span {
  width: 100%; }
  .play-wrap .all-play .audio-buttons span.icon-download {
    border-right: 1px solid #393b3d; }
  .play-wrap .all-play .audio-buttons span i {
    margin-right: 3px;
    top: 0; }
  .play-wrap .all-play .audio-buttons span a:active i {
    top: 1px; }

.play-wrap .single-play .audio-buttons {
  float: right;
  width: 30%;
  min-width: 40px; }
  .play-wrap .single-play .audio-buttons span {
    float: right;
    width: 40px; }
    .play-wrap .single-play .audio-buttons span.icon-download {
      width: 40px; }

@media screen and (min-width: 760px) {
  .play-wrap .all-play .audio-buttons span.icon-download {
    border-right: 2px solid #393b3d; } }

/* WRAPS AND TYPOGRAPHY FOR AUDIO SECTIONS  
    ------------------------------------------- */
.all-play, .single-play {
  width: 100%;
  max-width: 360px;
  margin: 0 auto 20px;
  padding-right: 5px; }

.greet-screen .all-play, .single-play {
  width: 100%;
  max-width: none;
  margin: 0 auto 20px;
  padding-right: 5px; }

.all-play {
  width: 100%;
  margin: 30px auto;
  margin-bottom: 30px;
  padding-top: 60px; }
  .all-play h2 {
    text-align: center;
    font-size: 35px;
    letter-spacing: 1px;
    margin-bottom: 20px;
    clear: both; }
  .all-play h4 {
    text-align: center; }
  .all-play p {
    margin: 0 0 30px 0;
	text-align: justify;
	font-family: "myriad-pro",sans-serif;
    line-height: 1.6em;  
	}

.single-play {
  clear: both; }
  .single-play .story {
    min-height: 70px;
    margin: 10px; }
  .single-play .story:last-of-type {
    margin-bottom: 25px; }
    @media screen and (min-width: 400px) {
      .single-play .story:last-of-type {
        margin-bottom: 50px; } }
  .single-play .story-deets {
    float: left;
    width: 69%; }
    .single-play .story-deets p {
      text-align: left;
      font-size: 12px;
      margin-bottom: 0; }
.single-play img {
	margin-top: 0px;
    width: 100%;
	max-width: 250px;
}
.greet-screen .single-play .story {
	margin-bottom: 0;
}
.img-responsive {
	width: 100%;
}
.img-responsive-episode {
	width: 100%;
	margin: 0 auto;
}
.img-small {
	max-width: 50px;
}

@media screen and (min-width: 736px) {
  .all-play {
    width: 50%;
    float: left;
    clear: both;
    padding-top: 0; }
  .single-play {
    width: 50%;
    float: right;
    clear: none;
    margin-top: 28px; }
	.greet-screen .single-play {
	width: 100%;
	margin: 0 auto;
	}
}

/* SPECIAL-CASE STYLINGS  
    ------------------------------------------- */
@media screen and (max-width: 760px) {
  #Chptr3-2014 h2 .hyphenation {
    /* display: none; */ } }

.acute {
  background: url(../img/bg-acute.png) 1px 0 no-repeat;
  padding-top: 2px; }

.playing a {
  background: #393b3d !important;
  color: #f3f2ec; }
.finale .playing a {
	  background: #fafafa !important;
  color: #393b3d; 
}

/*----------------------------------------------------------------------------------------------------------------------------
    BACK TO TOP 
------------------------------------------------------------------------------------------------------------------------------*/
.cd-top {
  position: fixed;
  z-index: 3;
  bottom: -10px;
  right: 10px;
  height: 40px;
  width: 40px;
  border-radius: 50%;
  /* image replacement properties */
  text-indent: 100%;
  background-color: rgba(255, 124, 120, 0.9);
  background-image: url(../img/down-arrow.svg);
  background-position: center -3px;
  background-repeat: no-repeat;
  background-size: 40px;
  transform: rotate(180deg);
  visibility: hidden;
  opacity: 0; }

.cd-top.cd-is-visible,
.cd-top.cd-fade-out,
.no-touch .cd-top:hover {
  transition: opacity .3s 0s, visibility 0s 0s, background .15s ease; }

.cd-top.cd-is-visible {
  visibility: visible;
  opacity: 1;
  background-color: rgba(255, 124, 120, 0.9); }

.cd-top.cd-fade-out {
  background-color: rgba(255, 154, 151, 0.75);
  transition: all .2s ease; }

.no-touch .cd-top {
  border: 2px #f3f2ec solid; }
  .no-touch .cd-top:hover {
    background-color: rgba(57, 59, 61, 0.75); }

@media only screen and (min-width: 768px) {
  .cd-top {
    height: 50px;
    width: 50px;
    bottom: 10px;
    right: 30px;
    background-position: center 1px; } }

@media only screen and (min-width: 1024px) {
  .cd-top {
    height: 55px;
    width: 55px;
    bottom: 5px;
    right: 25px;
    background-position: center 4px; } }

/*----------------------------------------------------------------------------------------------------------------------------
    PUSHY MENU SPECIFICS 
------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width: 399px) and (min-width: 1px) {

	.menu-btn .enlarge-target-area {
    text-align: center;
    background: #393b3d;
    position: fixed;
    left: 0;
    right: 0;
    top: -25px;
    z-index: 5;
    height: 25px;
	      -webkit-transition: all 0.25s ease-in-out;
      transition: all 0.25s ease-in-out;}
    .menu-btn .enlarge-target-area .trigger-text {
      width: 100vh;
      color: #f3f2ec;
      line-height: 25px;
      font-size: 10px;
      letter-spacing: 5px;
      font-family: 'Gotham A', 'Gotham B';
      font-weight: 500;
      font-style: normal; } 
.menu-btn.make-visible {
  top: -25px; }
  .menu-btn.make-visible .enlarge-target-area {
    top: 0px; }
}

@media screen and (min-width: 400px) {
  .menu-btn {
    color: #f3f2ec;
    text-align: center;
    position: fixed;
    right: -60px;
    top: 0;
    bottom: 0;
    width: 40px;
    z-index: 5; }
    .menu-btn:hover .enlarge-target-area {
      width: 60px;
      opacity: .8; }
    .menu-btn .enlarge-target-area {
      background: #393b3d;
      color: #f3f2ec;
      cursor: pointer;
      position: fixed;
      right: 0;
      top: 0;
      bottom: 0;
      z-index: 5;
      width: 50px;
      -webkit-transition: all 0.25s ease-in-out;
      transition: all 0.25s ease-in-out; }
      .menu-btn .enlarge-target-area .trigger-text {
        display: inline-block;
        width: 100vh;
        -webkit-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
        transform: rotate(90deg);
        transform-origin: left bottom;
        line-height: 25px;
        font-size: 10px;
        letter-spacing: 5px;
        float: left;
        margin: -25px 0 0 0;
        font-family: 'Gotham A', 'Gotham B';
        font-weight: 500;
        font-style: normal; } }

.menu-btn {
  right: -60px; }
  .menu-btn .enlarge-target-area {
    right: -60px; }

.menu-btn.make-visible {
  right: -60px; }
  .menu-btn.make-visible .enlarge-target-area {
    right: -25px; }

/*----------------------------------------------------------------------------------------------------------------------------
    PUSHY NAV TABLE OF CONTENTS STYLING 
------------------------------------------------------------------------------------------------------------------------------*/
.pushy {
  padding-top: 60px;
  padding-bottom: 60px;
  padding-left: 50px;
  padding-right: 50px; }

.pushy p {
  color: #f3f2ec;
  font-size: 18px;
  line-height: 22px;
  text-align: center;
  margin-bottom: 20px;
  letter-spacing: 2px;
  font-family: 'Gotham A', 'Gotham B';
  font-weight: 500;
  font-style: normal; }

.pushy h1 {
  color: #f3f2ec;
  font-size: 28px;
  line-height: 22px;
  text-align: center;
  margin-bottom: 20px;
  letter-spacing: 2px;
  font-family: 'Gotham A', 'Gotham B';
  font-weight: 500;
  font-style: normal; }

.table-of-contents {
  width: 100%;
  max-width: 400px;
  display: table;
  margin: 0 auto;
  overflow: hidden; }
  .table-of-contents a {
    display: table-row;
    text-align: left;
    position: relative;
    height: 30px;
    color: #f3f2ec;
    text-decoration: none;
    font-size: 12px;
    line-height: 18px;
    font-family: 'Gotham A', 'Gotham B';
    font-weight: 500;
    font-style: normal; }
    .table-of-contents a:hover {
      color: rgba(255, 124, 120, 0.9); }
      .table-of-contents a:hover .numero {
        background-position-y: -10px; }
  .table-of-contents a div {
    display: table-cell;
    text-transform: uppercase;
    display: table-cell;
    vertical-align: bottom;
    position: relative; }
    .table-of-contents a div:nth-of-type(odd) {
      position: relative;
      overflow: hidden; }
      .table-of-contents a div:nth-of-type(odd) span {
        background: #393b3d;
        padding-right: 6px; }
    .table-of-contents a div:nth-of-type(even) {
      width: 45px;
      background: #393b3d;
      padding-left: 8px;
      margin-left: -8px; }
    .table-of-contents a div::after {
      content: "·········································";
      color: rgba(243, 242, 236, 0.5);
      display: block;
      font-size: 10px;
      letter-spacing: 10px;
      line-height: 10px;
      bottom: 1px;
      position: absolute;
      vertical-align: bottom;
      left: 3px;
      z-index: -1; }
  .table-of-contents .numero {
    font-size: 7px;
    line-height: 14px;
    vertical-align: baseline;
    position: relative;
    top: -3px;
    background: url(../img/numero-nav.png) left 9px no-repeat;
    padding-bottom: 2px;
    padding-right: 4px; }

/*----------------------------------------------------------------------------------------------------------------------------
    FOOTER AUDIO PLAYER/SCRUBBER 
------------------------------------------------------------------------------------------------------------------------------*/


.footer {
  position: fixed;
  z-index: 10;
  left: 0;
  width: 100%;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out; }
  .footer::before {
    display: block;
    content: "";
    width: 100%;
    background: transparent linear-gradient(to bottom, transparent 0%, #f3f2ec 100%) repeat scroll 0 0;
    height: 125px;
    bottom: 50px;
    position: absolute;
    pointer-events: none; }
  .footer.scrub-hidden {
    bottom: -125px; }
  .footer.scrub-visible {
    bottom: 0; }

#scrub-wrapper {
  width: 100%;
  height: 100px;
  position: relative;
  bottom: 0;
  background: #f3f2ec; }

.track-details {
  position: relative;
  z-index: 5;
  float: left;
  width: 30%;
  height: 100px;
  padding: 0 5px 0 10px;
  overflow: hidden;
  background: #393b3d;
  border-left: inherit;
  border-right: inherit;
  border-bottom: inherit; }
  .track-details .numero {
    font-size: 55%;
    top: -4px;
    background-image: url(../img/numero-sm-rev.png); }
  .track-details h5, .track-details h6 {
    color: #f3f2ec;
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis; }
    .track-details h5.chapter, .track-details h6.chapter {
      line-height: 63px;
      margin-bottom: -12px; }
    .track-details h5.story, .track-details h6.story {
      line-height: 15px; }

.track-controls {
  position: relative;
  z-index: 5;
  float: left;
  width: 5%;
  height: 100px;
  border-bottom: inherit; }
  .track-controls a {
    display: block;
    width: 100%;
    height: 100%;
    font-size: 40px;
    padding-right: 10px;
	padding-left: 10px;  
    line-height: 100px;
    background: url(../img/bg-texture.jpg) 0 0 repeat;
    -webkit-transition: all 0.05s ease-in-out;
    -moz-transition: all 0.05s ease-in-out;
    -o-transition: all 0.05s ease-in-out;
    -ms-transition: all 0.05s ease-in-out;
    transition: all 0.05s ease-in-out; }
    .track-controls a:hover {
      color: #f3f2ec;
      background: #393b3d; }

  /*colors:
	yellow: ddc65f
  	dark gray: 393b3d
  	off white: f3f2ec*/

.progress-wrapper {
  float: left;
  width: 65%;
  height: 100px;
  cursor: pointer;
  position: relative;
  border-left: inherit;
  border-right: inherit;
  border-bottom: none; }

.played {
  width: 100%;
  height: 100% !important;
  overflow: hidden;
  background: none !important; }

.ui-widget-content {
  height: 3px;
  border: none !important;
  position: absolute;
  width: 100%;
  top: 0;
  left: 0; }
  .ui-widget-content:hover {
    cursor: col-resize; }

.ui-slider .ui-slider-handle {
  height: 100%;
  width: 100%;
  border: none;
  background-color: #ddc65f;
  pointer-events: none; }
  .ui-slider .ui-slider-handle:focus {
    outline: 0; }

.ui-slider-horizontal .ui-slider-handle {
  left: 0;
  margin: 0;
  margin-left: -100%;
  position: absolute;
  top: 0; }

.load-bar {
  position: absolute;
  z-index: 5;
  bottom: 0;
  float: left;
  background: #ddc65f;
  opacity: .5;
  width: 30%;
  height: 2px; }

.time {
  position: relative;
  z-index: 5;
  float: left;
  position: absolute;
  width: 100%;
  height: 50px;
  line-height: 50px;
  padding-left: 10px;
  padding-right: 10px;
  font-family: BemboStd-Italic;
  font-weight: 400;
  letter-spacing: 1px;
  letter-spacing: 0;
  font-size: 15px;
  pointer-events: none; }
  .time .left {
    float: left; }
  .time .right {
    float: right; }

@media screen and (min-width: 760px) {
  .played {
    height: 48px; } }

@media screen and (max-width: 1100px) {
  .track-details {
    width: 37%; }
  .track-controls {
    width: 7%; }
  .progress-wrapper {
    width: 56%; } }

@media screen and (max-width: 925px) {
  .track-details {
    width: 38%; }
  .track-controls {
    width: 7%; }
  .progress-wrapper {
    width: 55%; } }

@media screen and (max-width: 760px) {
  .footer::before {
    bottom: 40px;
    height: 100px; }
  #scrub-wrapper {
    height: 100px; }
  .track-controls {
    height: 100px; }
    /*.track-controls .fa {
      font-size: 18px; }*/
  .track-controls a {
    line-height: 100px; }
  .progress-wrapper {
    height: 100px; }
  .played {
    height: 39px; }
  .time {
    height: 100px;
    line-height: 80px; }
  .track-details {
	  height: 100px;
    width: 30%; }
  .track-controls {
    width: 20%; }
  .progress-wrapper {
    width: 50%; } }

@media screen and (max-width: 740px) {
  #scrub-wrapper {
    margin-top: -5px; } }

@media screen and (max-width: 400px) {
  #scrub-wrapper {
    height: 100px; }	
.track-details {
    width: 30%; }
  .track-controls {
    width: 20%; }
  .progress-wrapper {
    width: 50%; } }

/*----------------------------------------------------------------------------------------------------------------------------
    ON SUPER NARROW SCREENS, YOU JUST GOTTA REMOVE STUFF 
------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width: 300px) {
  .header {
    display: none; }
  .dateline {
    margin-top: 25px; }
  .play-wrap .audio-buttons span.icon-download {
    display: none; }
  .play-wrap .all-play .audio-buttons span {
    width: 100%; }
  .play-wrap .single-play .audio-buttons {
    min-width: 40px; } }

#main-wrapper {
  position: relative; }

/*-----------------------------
	MODAL STUFF
-------------------------------*/

.modal__overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.8);
  display: flex;
  justify-content: center;
  align-items: center;
	z-index: 9;
}

.modal__container {
  background-color: #393b3d;
  padding: 60px 30px 120px;
  width: 100%;
  height: 100vh;
  border-radius: 0px;
  overflow-y: auto;
  box-sizing: border-box;
}

.modal__container .button-lg a{
	border-color: #fafafa;
	color: #fafafa;
	background-color: transparent;
}
.modal__container .button-lg a:hover{
		border-color: #fafafa;
	color: #393b3d;
	background-color: #fafafa;
}

.modal__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal__title {
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 600;
  font-size: 10vw;
  line-height: 1.25;
  color: #fafafa;
  box-sizing: border-box;
}
h2.modal__title.instructions {
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 600;
  font-size: 4vw;
  line-height: 1.25;
  color: #fafafa;
  box-sizing: border-box;
}

  .all-play h2 {
    text-align: center;
    font-size: 35px;
    letter-spacing: 1px;
    margin-bottom: 20px;
    clear: both; }

.modal__close {
	background-color: #fafafa;
    border: 0;
    cursor: pointer;
    padding: 1em 1.3em;
    border-radius: 50%;
    color: rgba(0,0,0,.8);
	transition: transform .25s ease-out,-webkit-transform .25s ease-out;
}
.modal__close:hover {
	transform: scale(1.1);
}

.modal__header .modal__close:before { content: "\2715"; font-size: 1.5em; }

.modal__content {
  margin-top: 2rem;
  margin-bottom: 2rem;
  line-height: 1.5;
  color: rgba(255,255,255,.8);
}
.modal__content h2 {
	font-family: 'IBM Plex Mono', monospace;
	text-align: left;
	color: #fafafa;
	font-size: 1em;
	margin-bottom: 2em;
}
.modal__content p {
	text-align: left;
	font-size: 14px;
	font-family: Consolas, "Andale Mono", "Lucida Console", "Lucida Sans Typewriter", Monaco, "Courier New", "monospace";
	letter-spacing: normal;
	color: rgba(255,255,255,.8);
}
.modal__content p a {
	color: rgba(214,184,40,0.8);
}

.modal__btn {
  font-size: .875rem;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: .5rem;
  padding-bottom: .5rem;
  background-color: #e6e6e6;
  color: rgba(0,0,0,.8);
  border-radius: .25rem;
  border-style: none;
  border-width: 0;
  cursor: pointer;
  -webkit-appearance: button;
  text-transform: none;
  overflow: visible;
  line-height: 1.15;
  margin: 0;
  will-change: transform;
  -moz-osx-font-smoothing: grayscale;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  transition: -webkit-transform .25s ease-out;
  transition: transform .25s ease-out;
  transition: transform .25s ease-out,-webkit-transform .25s ease-out;
}

.modal__btn:focus, .modal__btn:hover {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}

.modal__btn-primary {
  background-color: #00449e;
  color: #fff;
}



/**************************\
  Animation Style
\**************************/
@keyframes mmfadeIn {
    from { opacity: 0; }
      to { opacity: 1; }
}

@keyframes mmfadeOut {
    from { opacity: 1; }
      to { opacity: 0; }
}

@keyframes mmslideIn {
  from { transform: translateX(100%); }
    to { transform: translateX(0); }
}

@keyframes mmslideOut {
    from { transform: translateX(0); }
    to { transform: translateX(100%); }
}

.micromodal-slide {
  display: none;
}

.micromodal-slide.is-open {
  display: block;
	z-index: 999;
}

.micromodal-slide[aria-hidden="false"] .modal__overlay {
  animation: mmfadeIn .3s cubic-bezier(0.0, 0.0, 0.2, 1);
}

.micromodal-slide[aria-hidden="false"] .modal__container {
  animation: mmslideIn .3s cubic-bezier(0, 0, .2, 1);
}

.micromodal-slide[aria-hidden="true"] .modal__overlay {
  animation: mmfadeOut .3s cubic-bezier(0.0, 0.0, 0.2, 1);
}

.micromodal-slide[aria-hidden="true"] .modal__container {
  animation: mmslideOut .3s cubic-bezier(0, 0, .2, 1);
}

.micromodal-slide .modal__container,
.micromodal-slide .modal__overlay {
  will-change: transform;
}

@media screen and (min-width: 900px) {
	.modal__container .credits, .modal__container .script, .script, .credits {
  width: 50%;
}
	.modal__overlay {
  justify-content: flex-end;

}
	.modal__title {
  font-size: 46px;
	}
}
