/* BIOS AND CAST PAGE CSS
-------------------------------*/

#bios h1 {
  margin-top: 40px;
}
#cast-bios, #creative-bios, #ensemble-bios, #producer-bios {
  margin: 35px 0 35px 0;
  text-align: center !important;
}
#liferaft {
  margin-bottom: 50px;
}
.creative-info h3, .cast-info h3, .ensemble-info h3, .producer-info h3 {
  font-size: 350%;
  color: rgba(255, 217, 81, 1.0);
  font-family: 'Compacta W01 Italic', sans-serif !important;
  letter-spacing: 1px;
  text-shadow: 2px 2px 1px rgba(0, 0, 0, 1.0);
}
.role-part {
  font-size: 85%;
}
.creative-info p, .cast-info p, .ensemble-info p, .producer-info p {
  font-size: 200%;
  font-family: 'TradeGothicW01-BoldCn20_675334', sans-serif !important;
  line-height: 1.3;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 1.0);
}
a:hover.cast-member {
  text-decoration: none:
}
.thumbs .cast-role, .thumbs .creative-role, .thumbs .ensemble-role, .thumbs .producer-role {
  font-family: 'TradeGothicW01-BoldObl', sans-serif !important;
  font-size: 160%;
  line-height: 1.0;
  text-shadow: 2px 2px 1px rgba(0, 0, 0, 1.0);
  text-transform: uppercase;
}
.thumbs .cast-name, .thumbs .creative-name, .thumbs .ensemble-name, .thumbs .producer-name {
  font-family: 'Compacta W01 Italic', sans-serif !important;
  font-size: 300%;
  line-height: 1.0;
  color: rgba(255, 255, 255, 1.0);
  text-shadow: 3px 3px 2px rgba(0, 0, 0, 1.0);
  letter-spacing: 1px;
}
.thumbs {
  margin-bottom: 25px;
}
.thumbs a .cast-info, .thumbs a .creative-info, .thumbs a .ensemble-info, .thumbs a .producer-info {
  transition: all .3s ease-in-out;
}
.thumbs a:hover .cast-info, .thumbs a:hover .creative-info, .thumbs a:hover .ensemble-info, .thumbs a:hover .producer-info {
  transform: scale(1.5);
}

/* OVERLAY CSS
-------------------------------*/

.overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(166, 71, 152, 1.0);
  background-image: url('../_img/gfx-overlay-gradient.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  z-index: 996;
  overflow-y: auto;
}
.overlay .container {
  max-width: 80% !important;
  width: 80% !important;
}
.overlay a:hover, .overlay a:active, .overlay a {
  text-decoration: none !important;
}

/* Overlay closing cross */

.overlay .overlay-close {
  background: none;
  border: none;
  color: rgba(255, 219, 83, 1.0);
  display: block;
  float: right;
  font-family: 'Trade Gothic W01 Bold', sans-serif;
  font-size: 175%;
  font-weight: 700;
  margin: .5em 1.5em 1.5em 1.5em;
  max-width: 50px !important;
  outline: none;
  position: absolute;
  right: 0;
  text-align: right;
  top: 0;
  width: 50%;
}
.overlay-close img {
  width: 100%;
}
.overlay .fc-icon:after {
  font-size: 200% !important;
}
.overlay .overlay-next, .overlay .overlay-prev {
  display: block;
  position: absolute;
  top: 25%;
  outline: none;
  border: none;
  padding: 3px;
  font-size: 600%;
  display: inline-block;
  text-align: center;
  text-decoration: none;
}
.overlay .overlay-next:after, .overlay .overlay-prev:after {
  display: inline;
  text-align: center;
  content: "\02039";
  font-weight: normal;
  margin-top: -3px;
  position: relative;
  white-space: nowrap;
  cursor: pointer;
  font-family: "Courier New", Courier, monospace;
  vertical-align: baseline;
  color: rgba(255, 219, 83, 1.0);
  margin-top: -1.5em;
  text-shadow: 0px 1px #000;
  text-decoration: none;
}
.overlay .overlay-next:hover:after, .overlay .overlay-prev:hover:after {
  color: rgba(255, 219, 83, 1.0);
  text-decoration: none;
}
.overlay .overlay-next:after {
  content: "\0203A";
  text-decoration: none;
}
.overlay-next {
  right: 1%;
  text-decoration: none;
}
.overlay-prev {
  content: "\02039";
  left: 1%;
  text-decoration: none;
}

/* Effects */

#cast-bios, #creative-bios, #ensemble-bios, #producer-bios {
  -webkit-transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
}
#cast-bios.overlay-open, #creative-bios.overlay-open, #ensemble-bios.overlay-open, #producer-bios.overlay-open {
  -webkit-transform: translateX(50%);
  transform: translateX(50%);
}
#creative-bios::after, #cast-bios::after, #ensemble-bios::after, #producer-bios::after {
  content: '';
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transition: opacity 0.5s, visibility 0s 0.5s;
  transition: opacity 0.5s, visibility 0s 0.5s;
}
#cast-bios.overlay-open::after, #creative-bios.overlay-open::after, #ensemble-bios.overlay-open::after, #producer-bios.overlay-open::after {
  visibility: visible;
  opacity: 1;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
}
.overlay-contentpush {
  visibility: hidden;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-transition: -webkit-transform 0.5s, visibility 0s 0.5s;
  transition: transform 0.5s, visibility 0s 0.5s;
}
.overlay-contentpush.open {
  visibility: visible;
  -webkit-transform: translateX(0%);
  transform: translateX(0%);
  -webkit-transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
}
#overlay-inner {
  clear: both;
  color: rgba(255, 255, 255, 1.0);
  text-align: left;
  margin-top: 5em;
}
#overlay-inner h3 {
  margin: 0 auto 10px;
}
#overlay-inner img {}

/* MEDIA QUERIES */

@media (max-width: 767px) {
  .thumbs .cast-role, .thumbs .creative-role, .thumbs .ensemble-role, .thumbs .producer-role {
    font-size: 120%;
  }
  .thumbs .cast-name, .thumbs .creative-name, .thumbs .ensemble-name, .thumbs .producer-name {
    font-size: 200%;
  }
  .thumbs {
    margin-bottom: 15px;
  }
  #overlay-inner {
    margin-bottom: 5em;
  }
  .overlay .overlay-close {
    margin: .2em .5em 1.5em .5em;
  }
  #overlay-inner h3 {
    font-size: 250% !important;
  }
  #overlay-inner p {
    font-size: 160% !important;
    line-height: 1.4;
  }
  #overlay-inner img {
    transform: scale(0.95) !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {}
@media (min-width: 992px) and (max-width: 1199px) {}
@media (min-width: 1200px) {}