  *
{
    margin: 0;
    padding: 0;
}

.prod-wrapper {
    overflow: hidden;
    background: black;
    color: #fed000;
    font-family: teletext2;
    font-size: 1.1em;
}

.holder{
    height: 100vh;
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
}

.border{
    border: 2px #fed000 solid;
    width: 95%;
    max-width: 1200px;
    height: 95%;
    display: grid;
    align-content: space-between;
}

.top-bar{
    display: flex;
    /* width: calc(99% - 4px); */
    width: 100%;
    justify-self: center;
    justify-content: space-between;
    align-items: center;
    height: calc(5vh + 8px);
}

.blink-prod-title{
    justify-content: center;
}

.yellow-top-item{
    width: 20%;
    height: 100%;
    align-items: center;
    display: flex;
    border-right: #fed000 6px double;
}

.yellow-top-item a{
    color: #fed000;
    text-decoration: none;
    cursor: pointer;
}

.yellow-top-item:last-of-type{
    border-right: none;
}

.inprod-title, .date, .inprod-time{
    justify-content: center;
}

.middle-section{
    display: grid;
    border: 2px #fed000 solid;
    border-top: 6px #fed000 double;
    /* align-content: space-between; */
    justify-self: center;
    width: 99%;
    height: calc(75vh - 8px);
    grid-auto-rows: 45vh 1fr;
    grid-auto-columns: 1fr 1fr;
    grid-template-areas: "showslist showimage"
    "description description";
    overflow-y: auto;
    overflow-x: hidden;
}

.middle-section button {
    font-family: teletext2;
    font-size: 1.3em;
}


.middle-section::-webkit-scrollbar, .middle-section-show-page::-webkit-scrollbar {
    width: 10px;
  }
  .middle-section::-webkit-scrollbar-track, .middle-section-show-page::-webkit-scrollbar-track {
    background: black; 
    border-left: 2px solid #fed000;
  }

  .middle-section::-webkit-scrollbar-thumb, .middle-section-show-page::-webkit-scrollbar-thumb {
    background: #fed000; 
    border-left: 2px solid #fed000;

  }

  .middle-section::-webkit-scrollbar-thumb:hover, .middle-section-show-page::-webkit-scrollbar-thumb:hover {
    background: #caa603; 
  }

.inprod-description, .inprod-page-description{
    grid-area: description;
    width: 100%;
    height: auto;
    border-top: solid 2px #fed000;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: black;
}

.inprod-description{
    display: flex;
}

.inprod-page-description{
    width: calc(100% - 20px);
    padding: 10px;
}

.inprod-description p, .inprod-page-description p{
    padding: 10px;
}

.bottom{
    display: flex;
    background-color: #fed000;
    color: black;
    height: calc(15vh - 6px);
    justify-content: center;
    align-items: center;
    text-align: center;
}

.columns{
    display: flex;
    height: 55vh;
}

.shows{
    text-transform: uppercase;
    width: 100%;
    padding-top: 6px;
    grid-area: showslist;
}

.middle-section .shows button {
    padding: 10px;
    color: #fed000;
}

.middle-section .shows button:hover{
    background-color: #fed000;
    color: black;
    cursor: pointer;
}

.yellow-show-image{
    display: flex;
    align-self: center;
    align-content: center;
    align-items: center;
    justify-self: flex-end;
    width: 100%;
    height: 100%;
    max-width: 50vw;
    max-height: 50vh;
    object-fit: cover;
    grid-area: showimage;
}



.yellow-show-image img{
    width: 100%;
    /* max-height: calc(100% - 4px);
    max-width: calc(100% - 4px); */
    max-width: 100%;
    max-height: 100%;
    height: 100%;
    object-fit: cover;
    overflow: hidden;
    display: block;
    border-left: #fed000 2px solid;
}

/* INDIVIDUAL PAGE */

.middle-section-show-page{
    /* display: grid; */
    border: 2px #fed000 solid;
    border-top: 6px #fed000 double;
    border-bottom: none;
    /* align-content: space-between; */
    width: 99%;
    grid-auto-columns: 1fr;
    justify-self: center;
    height: calc(69vh - 16px);
    overflow-y: auto;
    overflow-x: hidden;
}


.yellow-show-page-title{
    width: 99%;
    display: flex;
    justify-self: center;
    justify-content: center;
    align-items: center;
    height: calc(5vh + 14px);
    font-size: 1.4em;
    border: #fed000 solid 2px;
    border-bottom: none;
    border-top: 6px #fed000 double;
}


.yellow-show-page-content{
    display: block;
    width: 100%;
    /* height: 100%; */
}

.yellow-show-page-featured-image img {
    width: 100%;
    object-fit: cover;
}

@media(min-width: 1200px) {

 .yellow-show-page-featured-image-holder #inject-featured_image{
        position:relative;
      }

      .yellow-show-page-featured-image-holder #inject-featured_video_url{
        position: initial;
      }

    .border{
        max-width: none;
    }

    .yellow-show-page-featured-image-holder{
        grid-area: inshowimage;
        height: 100%;
    }

    .inprod-page-description{
        display: grid;
        align-content: center;
        height: calc(100% - 20px);
        border: none;
        border-left: 2px solid #fed000;
    }

    .inprod-page-description p{
        padding-left: 10px;
        padding-right: 10px;
    }
    
.yellow-show-page-content{
    display: grid;
    height: 100%;
    align-items: center;
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "inshowimage description";
}

.yellow-show-page-featured-image{
    height: 100%;
}
.yellow-show-page-featured-image img{
    height: 100%;
    object-fit: cover;
}
}

@media(max-width: 1000px) {
    
    .yellow-top-item{
        width: 33.3%;
        display: flex;
        text-align: center;
        justify-content: center;
    }
    
    .top-bar .date{
        display: none;
    }

.inprod-title{
    justify-content: center;
}
}

@media(max-width: 800px) {
    .top-bar{
        font-size: 0.9em;
    }
}
@media(max-width: 600px) {

    .top-bar{
        font-size: 1em;
    }

    .middle-section .shows .button{
        font-size:  0.9em;
    }


  .screen-body, .prod-wrapper, .holder{
        max-height: 100%;
                    height: 100%;
                    max-height: -webkit-fill-available;
      }

          .middle-section{
            height: 78%;
          }

          .middle-section-show-page{
            height: calc(63vh - 16px);
          }

    .bottom{
        height: 15%;
    }

    .border{
        overflow: hidden;
        display: block;
    }

.inprod-time{
    display: none;
}

.prod-wrapper{
    font-size: 0.9em;
}

.yellow-top-item{
    width: 33.3%;
    font-size: 0.75em;
}
}

