@font-face {
    font-family: cabin;
    src: url("../Fonts/cabin.regular.ttf");
}

@font-face {
    font-family: nunito;
    src: url("../Fonts/nunito/Nunito-Regular.ttf");
}

@font-face {
    font-family: land;
    src: url("../Fonts/CARIMA.TTF");
}


@font-face {
    font-family: norse;
    src: url("../Fonts/viking/Viking.ttf");
}
html, body {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  background-color: #C33700;
  color: #FEFD49;
  font-family: 'nunito', sans-serif;
}

table{
    padding: 30px;
}

td{
    border: 1px solid white;
    padding: 5px;
    margin: 5px;
}

.void{
   background-color:navy;
   color:white;
}

.char_preview{
    display: inline-block;
    border: 8px solid rgba(0,0,0,0.6);
    margin: 15px;
    margin-top: 50px;
    width: 35%;
    border-radius: 8px;
    padding: 30px;
    background-color: rgba(0,0,0,0.3);
    box-shadow: 0px 0px 20px #000000;
    position: relative;
}

.char_preview .remove{
        display: inline-block;
        background-color: red;
        padding: 0px;
        position: absolute;
        right: 10px;
        top: 10px;
        padding-left: 3px;
        padding-right: 3px;
        cursor: pointer;
        margin: 5px;
}

.char_name{
    font-size: 24px;
    font-weight: 600;
}

.prepack_pellet{
    display: inline-block;
    min-width: 50px;
    height: 20px;
    text-align: center;
    padding-left: 5px;
    padding-right: 5px;
    margin: 5px;
    border-radius: 5px;
    background-color: rgba(0,0,0,0.3);
}

html:not([data-seerOf=void]) .void {
  display:none;
}

#output {
  margin: 25px;
  padding: 20px;
  margin-left: auto;
  margin-right: auto;
  border: 13px solid #FF8800f;
  background-color: #D66E04;
  border-radius: 13px;
  width: 1000px;
}

.popup{
   display: inline-block;
   position: fixed;
   top: 25%;
   left: 25%;
   width: 974px;
   color: rgba(0,0,0,0.9);
   padding: 15px;
   z-index: 999;
    border: 1px solid black;
    padding: 15px;
    box-shadow: 0px 0px 8px #000000;   background-color: #f2c272;
   padding: 10px;
   vertical-align: top;
   font-size: 34px;
   display: inline-block;
   border-radius: 13px;
}

.prepack-icon{
    max-width: 100px;
    margin: 5px;
}

.shadows{
   filter: contrast(0%) brightness(10%);
}

.frameAnimation{
    animation: frameAnimation 2.0s steps(1) infinite;
}

.frameAnimation:hover{
    background-position: -980px;
}

@keyframes frameAnimation {
   0% { background-position: 0px; }
   50% { background-position: -980px; }
   0% { background-position: 0px; }
}

@keyframes hopAnimation {
    from, to {
        transform: translateY(-10px);
      }
      50% {
        transform: translateY(10px);
      }
}

.turnways{
    -moz-transform: scaleX(-1);
    -o-transform: scaleX(-1);
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);
    filter: FlipH;
    -ms-filter: "FlipH";
}

.stage{
    display: block;
}

.stageholder{
    z-index: 3;
    position: absolute;
    top: 167px;
    left: 18px;
}

.stage-bg{
    position: absolute;
    top: 0px;
    left: -100px;
    z-index: 2;
}

.curtains-bg{
    position: absolute;
    top: 0px;
    left: -100px;
    z-index: 4;
}

.narration{
    position: absolute;
    bottom: -160px;
    font-weight: 900;
    color: black;
    z-index: 10;
    background-color: white;
    border-radius: 8px;
    border: 3px solid black;
    padding: 30px;
}

.volour{
    position: absolute;
    top: 485px;
    left: -255px;
    z-index: 11;
}

.silly-rabbit{
    position: absolute;
    top: 485px;
    left: -255px;
    z-index: 11;
    animation: hopAnimation 0.2s steps(1) infinite;
}

.scene{
    padding: 10px;
    position: relative;

}

.passed{
    background-color: green;
    padding: 5px;
}

.failed{
    background-color: red;
    padding: 5px;
}

#left-arrow{
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);
    bottom: 60px;
    left: 182px;
}

#right-arrow{
}

.arrow{
    cursor: pointer;
    display: inline-block;
    padding: 5px;
}