#game-content {
    background: linear-gradient(-48deg, #ffffff 52%, #000000 48%);
    background-size: 160%;
    background-position-x: -20em;
}

.content-header {
    display: block;
    width: 90%;
    height: 7%;
    display: flex;
    align-items: flex-end;
    background-color: transparent;
    color: white;
    font-size: 1.1em;
}

.content-header .header-left {
    font-size: 2em;
    position: relative;
    padding-left: 20px;
    float: left;
    margin: 0px 40px;
}

.content-header .header-center {
    flex:1;
    text-align: left;
    padding-left: 20px;
    float: left;
    margin: 0;
}

.content-header .header-center p {
    margin: 0;
    padding-top: 10px;
}

.content-header .header-left::before {
    content: url('../img/final-cuts/lizard.png');
    position: absolute;
    width: min-content;
    height: min-content;
    top: -5px;
    left: -15px;
}

.content-header .header-right {
    color: black;
    float: right;
}

.content-header .header-right p {
    padding-right: 0px;
    padding-top: 10px;
    margin: 0;
}

#game-nav {
    height: 5%;
    width: auto;
    margin: 0;
    text-align: right;
    width: 80%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    border: 0;
    margin-bottom: 5px;
}

#game-nav button:first-of-type {
    border-left: none;
}

#game-nav button {
    background-color: white;
    border: none;
    display: inline;
    height: 100%;
}
 
/* ====== END NAV STYLE ====== */
 
/* --- ONE COLUMN STYLING --- */
 
#flex-container {
    height: 95%;
}

#game-content.one-col .column-one {
    box-sizing: border-box;
    background-color: rgb(255, 255, 255);
    border: 1px solid black;
    box-shadow: 5px 5px 0px rgb(43, 43, 43);
    display: inline-block;
    margin: auto;
    text-align: left;
    overflow: auto;
    overflow-x: hidden;
    width: 90%;
    height: calc(90% - 40px);
    padding: 0;
}
 
#game-content.one-col .column-one p {
    margin-top: 0;
    padding: 2%;
}

#game-content.one-col .column-one img {
    width: 100%;
    height: 100%;
}
 
/* --- TWO COLUMN STYLING --- */
 
/* -- FEATURE STYLING -- */
#game-content.feature-window {
    background-color: #fefefe;
    position: relative;
}
 
#game-content.feature-window #flex-container {
    height: 100%;
    text-align: left;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}
#game-content.feature-window .column-one {
    height: 100%;
    overflow: hidden;
}
/* -- FINAL CUTS STYLING -- */

.clickable {
    cursor: pointer;
}
 
.modal {
    position: fixed;
    z-index: 5;
    left: 50%;
    top: 20%;
    width: 40%;
    max-width: 600px;
    height: 100%;
    transform: translateX(-50%);
}

#mao {
    margin: 0 auto;
    display: block;
    max-width: 681px;
    max-height: 156px;
    width: auto;
    height: auto;
}
 
/* -- MODAL POP UP STYLING -- */
.modal-content {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    padding-bottom: 40px;
    text-align: left;
    border-style: solid;
    border-color: #0e0e0e;
    box-shadow: 2px 2px 0px 0px #0e0e0e;
    font-weight: bold;
}

.popup-content {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    padding-bottom: 40px;
    text-align: left;
    border-style: solid;
    border-color: #0e0e0e;
    box-shadow: 2px 2px 0px 0px #0e0e0e;
    font-weight: bold;
}
  
.modal button {
    color: rgb(43, 43, 43);
    float: right;
    font-size: 14px;
    border-style: double;
    border-radius: 4px;
    border-width: 4px;
    margin: -4% auto;
    box-shadow: inset 0.1em 0.1em 0.1em 0 rgba(255,255,255,0.5), inset -0.1em -0.1em 0.1em 0 rgba(0,0,0,0.5);
    margin-top: 10px;
    padding-left: 15px;
    padding-right: 15px;
}


.modal button:hover,
.modal button:focus {
    text-decoration: none;
    cursor: pointer;
}

#game-nav button {
    width: 100px;
}

/* -- HELP POP UP STYLING -- */
#myButton {
    height: 30px;
    background-color: rgb(240, 240, 240);
    border-style: solid;
    border-color: grey;
    border-width: 1px;
    border-radius: 3px;
}
 
.help-button {
    height: 30px;
    background-color: rgb(240, 240, 240);
    border-style: solid;
    border-color: grey;
    border-width: 1px;
    border-radius: 3px;
  }
 .help-button img {
    height: 50%;
    cursor: pointer;
 }
 
  .help-popup {
    display: none;
    position: relative;
    border: 3px solid #f1f1f1;
    text-align: left;
    background-color: #fefefe;
    box-shadow: 2px 2px 0px 0px #0e0e0e;
    height: 110%;
    z-index: 2;
  }
 
 
  .help-container {
    text-align: left;
  }
 
  .help-container .cancel {
    color: rgb(43, 43, 43);
    background-color: rgb(241, 241, 241);
    width: 80px;
    height: 30px;
    margin-left: 45%;
    border-style: double;
    border-radius: 4px;
    border-width: 4px;
    box-shadow: inset 0.1em 0.1em 0.1em 0 rgba(255,255,255,0.5), inset -0.1em -0.1em 0.1em 0 rgba(0,0,0,0.5);
 
  }

 /* -- ARRAY LINK STYLING -- */
.arrayLink {
    background-color: none;
    border: none;
}

#game-nav button img {
    transform: translateY(25%);
}

#print-button img {
    height: 50%;
    cursor: pointer;
}

#back-button img {
    height: 50%;
    cursor: pointer;
}

#forward-button img {
    height: 50%;
    cursor: pointer;
}

#rewindButton img {
    height: 50%;
    cursor: pointer;
}

#double-forward-button img {
    height: 50%;
    cursor: pointer;
}

#return-button img {
    height: 50%;
    cursor: pointer;
}
 
#contentsButton img {
    height: 50%;
    cursor: pointer;
}

#helpPopup {
    position: absolute;
    z-index: 5;
    top: 34px;
    left: 7px;
    width: calc(100% - 20px);
    height: calc(100% - 48px);
}

.no-scroll{
    overflow: hidden !important;
}

.img-hidden{
    opacity: 0;
}

.inactive {
  display: none;
}

.img-in {
    animation: fade-in 1s forwards;
}

.img-out {
    animation: fade-out 1s forwards;
}

.feature-img div {
    background-color: black;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: top;
    width: calc(100% - 12px);
    height: calc(100% - 40px);
    position: absolute;
}

.feature-img div:nth-child(4) {
    z-index: 1;
}

.feature-img div:nth-child(3) {
    opacity: 0;
    animation: fade-in 3.5s forwards;
    animation-delay: 0.5s;
    z-index: 2;
}

.feature-img div:nth-child(2) {
    opacity: 0;
    animation: fade-in 2s forwards;
    animation-delay: 4s;
    z-index: 3;
}

.feature-img div:nth-child(1) {
    opacity: 0;
    animation: fade-in 2s forwards;
    animation-delay: 6s;
    z-index: 4;
}

#headshots {
    position: relative;
}

svg {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
}

@keyframes fade-in{
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fade-out{
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}