@charset UTF-8;
@import url(reset.css);
@import url(typo.css);

/* 
    *************************************************************************
    HTML Selectors
*/

/*
font-smooth: auto | never | always | <absolute-size> | length | initial | inherit
-webkit-font-smoothing : none | subpixel-antialiased | antialiased 
*/


*
{
  cursor: crosshair;
}

html *
{
    /*
    text-rendering: optimizeLegibility;
    text-rendering: geometricPrecision;
    font-smooth: always;
    font-smoothing: antialiased;
    -moz-font-smoothing: antialiased;
    -webkit-font-smoothing: antialiased;
    -webkit-font-smoothing: subpixel-antialiased;
    -moz-osx-font-smoothing:grayscale;
    */
    -webkit-font-smoothing: subpixel-antialiased;
    /*font-smooth: never;*/
    cursor: crosshair; !important;
    touch-action: manipulation;
    -webkit-text-size-adjust: 100%; /* Prevent font scaling in landscape */
}

*,:after,:before
{
  -webkit-box-sizing:border-box;
  -moz-box-sizing:border-box;
  box-sizing:border-box;
}




body
{
  background-color:#000;
  font-family:vcr_osd_monoregular !important;
  color:#333;
  margin:0;
  overflow:hidden; 
    
    padding:0;
    /*
    padding-top: 0px;
    padding-top: constant(safe-area-inset-top);
    */
}

.noselect {
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout:none;
  -webkit-user-select:none;
  -khtml-user-select:none;
  -moz-user-select:none;
  -ms-user-select:none;
  user-select:none;   
}

body.noscroll{
    margin: 0; height: 100%; 
    position:fixed;
    overflow:hidden;
    -webkit-overflow-scrolling: touch;
    
}
.noscroll{
    margin: 0; height: 100%; 
    position:fixed;
    overflow:hidden;
    -webkit-overflow-scrolling: touch;
}

a
{
  text-decoration:none;
  outline: 0;
  border:0;
}


a:active, a:selected, a:visited a:focus a:hover { 
	border: none;outline: none; -moz-outline-style: none; 
}


/* https://developer.mozilla.org/en/docs/Web/CSS/image-rendering */
img[src$=".gif"], img[src$=".png"]
{
  /*-ms-interpolation-mode:bicubic;*/
  image-rendering:optimizeSpeed;             /* Legal fallback */
  image-rendering:-moz-crisp-edges;          /* Firefox        */
  image-rendering:-o-crisp-edges;            /* Opera          */
  image-rendering:-webkit-optimize-contrast; /* Safari         */
  image-rendering:optimize-contrast;         /* CSS3 Proposed  */
  image-rendering:crisp-edges;               /* CSS4 Proposed  */
  image-rendering:pixelated;                 /* CSS4 Proposed  */
  -ms-interpolation-mode:nearest-neighbor;   /* IE8+           */
}

img{
    border : 0;
}



/* 
    *************************************************************************
    VCR FONT
*/


.FatVCR
{
  color:#00FF00;
  font-size:1.5em;
  line-height:0.88em;
  letter-spacing:-.04em;
  text-transform:uppercase;
  font-weight:500;
}
.VCRIcons
{
  font-family:vcr_iconsregular !important;
}
.smallVCR
{
  color:#00FF00;
  font-size:2.5em;
  line-height:0.9;
  letter-spacing:-.01em;
  text-transform:uppercase;
  font-weight:600;
}

.bVCR
{
  color:#00FF00;
  font-size:1.5em;
  line-height:0.9;
  letter-spacing:-.02em;
  text-transform:uppercase;
  font-weight:500;
}

.bVCRs
{
  color:#00FF00;
  font-size:1.5em;
  line-height:0.9;
  letter-spacing:-.02em;
  text-transform:uppercase;
  font-weight:500;
}

.smallVCRdebug
{
  font-size:1.5em;
}

.bVCR span:hover, span:active, span:focus
{
    color:#FFF;
    /*cursor:pointer;*/
}

.smallVCR a {
    outline: none;
    color:#00FF00;
}

.smallVCR a:hover, a:active, a:focus
{
    color:#FFF;
    /*cursor: pointer;*/
}




/* 
    *************************************************************************
    SHARE
*/

.selectIT {
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout:initial !important;
  -webkit-user-select:initial !important;
  -khtml-user-select:initial !important;
  -moz-user-select:initial !important;
  -ms-user-select:initial !important;
  user-select:initial !important;

 
  text-transform:none;
    word-break: break-all;
}


/*
    *************************************************************************
    VGA

*/

.tg  {border-collapse:collapse;border-spacing:0;border:none;width:100%;}
.tg td{overflow:hidden;word-break:normal;}
.tg .tg-lqy6{text-align:right;}
.tg .tg-yw4l{width:70%;}


.invert {
    filter: invert(100%);
    -webkit-filter: invert(100%);
    -moz-filter: invert(100%); 
    -o-filter: invert(100%); 
    -ms-filter: invert(100%);
}

.greyscale {
    filter: grayscale(100%);
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    -o-filter: grayscale(100%);
    -ms-filter: grayscale(100%);
}

.hue {
    filter: hue-rotate(180deg);
    -webkit-filter: hue-rotate(180deg);
    -moz-filter: hue-rotate(180deg);
    -o-filter: hue-rotate(180deg);
    -ms-filter: hue-rotate(180deg);
}

.saturate {
    filter: saturate(250%);
    -webkit-filter: saturate(250%);
    -moz-filter: saturate(250%);
    -o-filter: saturate(250%);
    -ms-filter: saturate(250%);
}

.blur {
    filter: blur(70px);
    -webkit-filter: blur(70px);
    -moz-filter: blur(70px);
    -o-filter: blur(70px);
    -ms-filter: blur(70px);
}

/* 
    *************************************************************************
    MAIN UI
*/

#app-main{
    /*
    overflow:hidden;
    
    visibility: none;
    //position:fixed;   
    
    min-height:100%;
    //position: absolute; left: 0; top: 0;
    background-color: azure;
    border-color:red;
        border-style: solid;
    border-width: 5px;
    //top:0px;
    
    //overflow: hidden; position: fixed; width: 100%; height: 100%;
    */
}

#container-ui{
    //position:relative;   
    //overflow:hidden;
    //top:0px;
}


.nav
{
  width:85%;
  /*max-width:1100px;
    max-width:85%;*/
  position:fixed;
  /*margin : 19px;*/
    margin: 2.5%;
    
    
}

.noTouch
{
    pointer-events:none;
}

.main
{
  margin:0;
  padding:0;
  z-index:40;
}

h1 > a
{
  text-decoration:none;
}

#container
{
  z-index: 5;
  position:absolute;
  top:0;
  right:0;
  bottom:0;
  left:0;
  overflow:auto;
}

#wrapper
{
  width:100%;
  height:100%;
  margin:0 auto;
}

#main
{
  width:100%;
  float:left;
}

#main > p,#main > div
{
  /*margin-left:15px;*/
}

.clearfix:before,.clearfix:after
{
  content:" ";
/* 1 */
  display:table;
/* 2 */
}

.clearfix:after
{
  clear:both;
}

/* 
    *************************************************************************
    CRT
*/


.global-crt {
  content: " ";
  display: block;
  position: fixed;
  opacity: 0.23;
  z-index: 2000;
  background:transparent url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAIAAAACCAYAAABytg0kAAAAE0lEQVQYV2NkYGD4D8QMjCACBAAOHwECqkSmRQAAAABJRU5ErkJggg==)  repeat top left;
  width:100%;
  height:100%;
  pointer-events: none;
}

/* 
    *************************************************************************
    BG
*/

#ov-bgnoise
{
    position: fixed; 
    top: 0; 
    left: 0; 
    pointer-events:none;
    z-index: 2; 
}

#bgnoise
{
    min-width:100%;
    min-height:100%;
    position: fixed; 
    top: 0; 
    left: 0; 
    background: url(../media/noise-red.gif) no-repeat top center;
    -webkit-background-size:cover;
    -moz-background-size:cover;
    -o-background-size:cover;
    background-size:cover;
    background-position: center;
    
        /*image-rendering: pixelated;*/
    image-rendering: optimizeSpeed;             /* STOP SMOOTHING, GIVE ME SPEED  */
    image-rendering: -moz-crisp-edges;          /* Firefox                        */
    image-rendering: -o-crisp-edges;            /* Opera                          */
    image-rendering: -webkit-optimize-contrast; /* Chrome (and eventually Safari) */
    image-rendering: pixelated; /* Chrome */
    image-rendering: optimize-contrast;         /* CSS3 Proposed                  */
    -ms-interpolation-mode: nearest-neighbor;   /* IE8+                           */
}

#ov-pattern
{
    background:transparent url(../media/pattern-rgb.png) repeat top left;
    opacity:0.4;
    /*
    filter: alpha(opacity=50);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
    */
    position: fixed; 
    width: 100%;
    height: 100%;
    pointer-events:none;
    z-index: 3; 
}

#ov-black
{
    background: rgba(0,0,0,0.7);
    position: fixed; 
    width: 100%;
    height: 100%;
    pointer-events:none;
    z-index: 1; 
}

/* 
    *************************************************************************
    MENU OVERLAY
*/

.commands {
  margin: 3.3%;
  z-index: 18;
  position:absolute;
  right:0;
  bottom:0;
  left:0;
  overflow:auto;
}

.commands2 {
  margin: 3.3%;
  z-index: 18;
  position:absolute;
  right:0;
  bottom:0;
  left:0;
  overflow:auto;
  background-color: #000;
}

@media (orientation: portrait) {
    .commands {
      bottom:15px;
    }
    .commands2 {
      bottom:15px;
    }
}

@media (orientation: landscape) {
    .commands {
      bottom:0;
    }
    .commands2 {
      bottom:0;
    }
}

.slider {
  margin: 3.3%;
  z-index: 20;
  position:fixed;
  right:0;
  bottom:0;
  left:0;
  overflow:auto;
  transform-origin: bottom;
  /*background: #000000;*/
  outline: 3px solid #ffffff;
  outline-offset: -3px;
  overflow: hidden;
}

/* http://danielstern.ca/range.css/#/ */
/* range */

input[type=range] {
  -webkit-appearance: none;
  width: 100%;
  margin: 0px 0;
}
input[type=range]:focus {
  outline: none;
}
input[type=range]::-webkit-slider-runnable-track {
  width: 100%;
  height: 55px;
  cursor: pointer;
  box-shadow: 0px 0px 0px #000000, 0px 0px 0px #0d0d0d;
  background: #ffffff;
  border-radius: 0px;
  border: 0px solid #000101;
}
input[type=range]::-webkit-slider-thumb {
  box-shadow: 0px 0px 0px #00ff00, 0px 0px 0px #1aff1a;
  border: 6px solid #00ff00;
  height: 55px;
  width: 55px;
  border-radius: 0px;
  background: #00ff00;
  cursor: pointer;
  -webkit-appearance: none;
  margin-top: 0px;
}
input[type=range]:focus::-webkit-slider-runnable-track {
  background: #ffffff;
}
input[type=range]::-moz-range-track {
  width: 100%;
  height: 55px;
  cursor: pointer;
  box-shadow: 0px 0px 0px #000000, 0px 0px 0px #0d0d0d;
  background: #ffffff;
  border-radius: 0px;
  border: 0px solid #000101;
}
input[type=range]::-moz-range-thumb {
  box-shadow: 0px 0px 0px #00ff00, 0px 0px 0px #1aff1a;
  border: 6px solid #00ff00;
  height: 55px;
  width: 55px;
  border-radius: 0px;
  background: #00ff00;
  cursor: pointer;
}
input[type=range]::-ms-track {
  width: 100%;
  height: 50px;
  cursor: pointer;
  background: transparent;
  border-color: transparent;
  color: transparent;
}
input[type=range]::-ms-fill-lower {
  background: #ffffff;
  border: 0px solid #000101;
  border-radius: 0px;
  box-shadow: 0px 0px 0px #000000, 0px 0px 0px #0d0d0d;
}
input[type=range]::-ms-fill-upper {
  background: #ffffff;
  border: 0px solid #000101;
  border-radius: 0px;
  box-shadow: 0px 0px 0px #000000, 0px 0px 0px #0d0d0d;
}
input[type=range]::-ms-thumb {
  box-shadow: 0px 0px 0px #00ff00, 0px 0px 0px #1aff1a;
  border: 6px solid #00ff00;
  width: 50px;
  border-radius: 0px;
  background: #00ff00;
  cursor: pointer;
  height: 55px;
}
input[type=range]:focus::-ms-fill-lower {
  background: #ffffff;
}
input[type=range]:focus::-ms-fill-upper {
  background: #ffffff;
}








/*
    ***********************
    ICONS
*/

.icon-iv {
    z-index: 16;
    margin: 2%;
    position: absolute;
    top:0;
    right:0;
    width: 7%;
    height: 12%;
    display: block;
	/*background-color: transparent;*/
}

.scanline {
    background:transparent url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAC0lEQVQYV2NgAAIAAAUAAarVyFEAAAAASUVORK5CYII=) repeat top left;
    
}

.icon-iv2 {
    z-index: 16;
    margin: 2%;
    position: absolute;
    bottom: 0;
    right:0;
    width: 7%;
    height: 12%;
    display: block;
}


#icons {
    z-index: 15;
    position: relative;
    margin: 3.3%;
    float:right;
    clear:both;
    max-width: 3%;
    width: auto;
    height: auto;
    min-width: 17px;
    overflow:hidden;
    display: block;
}

#icons img:hover
{
    /*cursor:pointer;*/
}

/*
#icons a, a:active, a:focus {
    outline: none;
}
*/

#icons img {
    max-width: 100%; 
    height: auto; 
    outline: 0; 
}

#icons2 {
    z-index: 15;
    position: absolute;
    bottom: 0;
    right:0;
    margin: 3.3%;
    float:right;
    clear:both;
    max-width: 3%;
    width: auto;
    height: auto;
    min-width: 17px;
    overflow:hidden;
    display: block;
}


#icons2 img:hover
{
    /*cursor:pointer;*/
}

#icons2 img {
    max-width: 100%; 
    height: auto; 
    outline: 0; 
}

@media (orientation: portrait) {
    #icons2 {
      bottom:15px;
    }
}

@media (orientation: landscape) {
    #icons2 {
      bottom:0;
    }
}

/* 
    ***********************
    GALLERY
*/


.gpic
{
    float:left;
    max-width:7%;
    min-width:7%;
    /*min-height:5%;*/
}

.gtext
{
    float:left;
    width:90%;
}

.gthumb
{
    background-repeat: no-repeat;
    background-position: center;
    background-size: 104%;
    max-width: 100%;
    max-height: 100%;
    z-index:1;
    
    /*image-rendering: pixelated;*/
    image-rendering: optimizeSpeed;             /* STOP SMOOTHING, GIVE ME SPEED  */
    image-rendering: -moz-crisp-edges;          /* Firefox                        */
    image-rendering: -o-crisp-edges;            /* Opera                          */
    image-rendering: -webkit-optimize-contrast; /* Chrome (and eventually Safari) */
    image-rendering: pixelated; /* Chrome */
    image-rendering: optimize-contrast;         /* CSS3 Proposed                  */
    -ms-interpolation-mode: nearest-neighbor;   /* IE8+                           */
    
}

.gthumb:hover
{
    /*
    -webkit-box-shadow:inset 0px 0px 0px 6px #00FF00;
    -moz-box-shadow:inset 0px 0px 0px 6px #00FF00;
    box-shadow:inset 0px 0px 0px 6px #00FF00;
    */
    /*cursor: pointer;*/
}

/* 
    ***********************
*/


.navTop
{
    /*width:90%;*/
    margin: 2.5%;
    overflow:hidden;
}


.crop
{
    /*width: 80%;*/
    overflow:hidden; 
    white-space:nowrap; 
    text-overflow:ellipsis; 
}  

.crop2
{
    overflow:hidden;
    white-space:nowrap;
    text-overflow:ellipsis; 
} 

.overlay {
  z-index: 14;
  position:absolute;
  top:0;
  right:0;
  bottom:0;
  left:0;
    /*
  overflow:auto;
  overflow-y: scroll;
    */
    overflow-x: hidden;
    overflow-y: hidden;
}

.overlay-mask {
  z-index: 3000;
  position:absolute;
  top:0;
  right:0;
  bottom:0;
  left:0;
background-color: black;
    
 /* transition */
opacity: 1;
   transition: opacity 2s ease-in-out;
   -moz-transition: opacity 2s ease-in-out;
   -webkit-transition: opacity 2s ease-in-out;
}

.overlay::-webkit-scrollbar { 
  /* This is the magic bit */
  display: none;
}


.overlay nav {
	text-align: center;
	position: relative;
	top: 50%;
	height: 60%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}

.force-select {
    /*
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout:initial !important;
  -webkit-user-select:initial !important;
  -khtml-user-select:initial !important;
  -moz-user-select:initial !important;
  -ms-user-select:initial !important;
  user-select:initial !important;
    */
    
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout:initial !important;
  -webkit-user-select:initial !important;
  user-select:initial !important;
 
  text-transform:none;
}

/* 
    *************************************************************************
    SPINNER
*/

/*
.loading {
    position: fixed;
    top: 0; right: 0;
    bottom: 0; left: 0;
    background: #000;
}
.loader {
    left: 50%;
    margin-left: -4em;
    font-size: 10px;
    border: .2em solid #000;
    border-left: .2em solid #FFF;
    animation: spin 0.5s infinite linear;
}
.loader, .loader:after {
    border-radius: 50%;
    width: 8em;
    height: 8em;
    display: block;
    position: absolute;
    top: 50%;
    margin-top: -4.05em;
}

@keyframes spin {
  0% {
    transform: rotate(360deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
*/



/* 
    *************************************************************************
    SCROLLBAR
*/

.scr-pane
{
    width: 100%;
	height: 100%;
	overflow: auto;
    /*direction: rtl;*/
    padding-top:0.5%; 
}

.scr-content
{
    padding-left:1%;
    float:left;
    /*direction: ltr;*/
    width: 90%;
}

.scr-pane::-webkit-scrollbar {
    width: 2%;
}
 
.scr-pane::-webkit-scrollbar-track {
    /*-webkit-box-shadow: inset 0 0 10px rgba(0,0,0,0.8);*/

}
 
.scr-pane::-webkit-scrollbar-thumb {
    height: 20%;
    background: #00FF00;
}
.scr-pane::-webkit-scrollbar-thumb:window-inactive {
	background: #00FF00; 
}


.scr-ios
{
    /*overflow: hidden;*/
    -webkit-overflow-scrolling: touch;

}

.scr-ios::-webkit-scrollbar {
    width: 0 !important;
    display: none;
}

/* 
    *************************************************************************
    LOGO
*/

.fig-ansi {
    font-size:10pt;
    font-family:"Courier New", Monospace;/* */
    white-space:pre;
}


/* 
    *************************************************************************
    scroll zone
*/


/* 
    *************************************************************************
    scroll zone
*/


.scroll-main{
  height:75vh;
  width:100%;
  overflow:hidden;
}

.scroll-main-vertical{
  height:80vh;
  width:200%;
  overflow:hidden;
}

.scroll-center{
  display: table-cell;
  white-space:nowrap;
  height:100vh;
  text-align: left;
  vertical-align: middle;
  pointer-events:none;
  overflow:hidden;
  /*
  transform: translateY(10%); 
  -moz-transform: translateY(10%);
  -webkit-transform: translateY(10%); 
  */
}

.marquee-off{
  opacity:0;
  transform: translateX(-110%);
  -webkit-transform: translateX(-110%);
  -moz-transform:translateX(-110%);
  -ms-transform:translateX(-110%);
  -o-transform:translateX(-110%);
}

.marquee-animation {
  overflow: hidden;
  animation: marquee-animation 20s linear normal forwards;
  -webkit-animation: marquee-animation 20s linear normal forwards;
}

@keyframes marquee-animation {
  /*
  0%   { text-indent: 5% }
  100% { text-indent: -100% }
  */
  0%   { transform: translateX(9%);opacity:1;}
100% { transform: translateX(-110%);opacity:1;}
}

@-webkit-keyframes marquee-animation {
  /*
  0%   { text-indent: 5% }
  100% { text-indent: -100% }
  */
  0%   { transform: translateX(9%);opacity:1;}
100% { transform: translateX(-110%);opacity:1;}
}


/*

    NEW
*/

.scanlines {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 300;
  opacity: .6;
  will-change: opacity;
  -webkit-animation: opacity 3s linear infinite;
          animation: opacity 3s linear infinite;
}
.scanlines:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.5) 51%);
  background-size: 100% 4px;
  will-change: background, background-size;
  -webkit-animation: scanlines .2s linear infinite;
          animation: scanlines .2s linear infinite;
}

@keyframes scanlines {
  from {
    background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.5) 51%);
    background-size: 100% 4px;
  }
  to {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 50%, transparent 51%);
    background-size: 100% 4px;
  }
}


.anim {
  -webkit-animation: rgbText 1s steps(9) 0s infinite alternate;
          animation: rgbText 1s steps(9) 0s infinite alternate;
}

@-webkit-keyframes rgbText {
  0% {
    text-shadow: 0px 0 1px rgba(251, 0, 231, 0.8), 0 0px 3px rgba(0, 233, 235, 0.8), 0px 0 3px rgba(0, 242, 14, 0.8), 0 0px 3px rgba(244, 45, 0, 0.8), 0px 0 3px rgba(59, 0, 226, 0.8);
  }
  25% {
    text-shadow:  0px 0 1px rgba(251, 0, 231, 0.8), 0 0px 3px rgba(0, 233, 235, 0.8), 0px 0 3px rgba(0, 242, 14, 0.8), 0 0px 3px rgba(244, 45, 0, 0.8), 0px 0 3px rgba(59, 0, 226, 0.8);
  }
  45% {
    text-shadow:  5px 0 1px rgba(251, 0, 231, 0.8), 0 5px 1px rgba(0, 233, 235, 0.8), -5px 0 1px rgba(0, 242, 14, 0.8), 0 -5px 1px rgba(244, 45, 0, 0.8), 5px 0 1px rgba(59, 0, 226, 0.8);
  }
  50% {
    text-shadow:  -5px 0 1px rgba(251, 0, 231, 0.8), 0 -5px 1px rgba(0, 233, 235, 0.8), 5px 0 1px rgba(0, 242, 14, 0.8), 0 5px 1px rgba(244, 45, 0, 0.8), -5px 0 1px rgba(59, 0, 226, 0.8);
  }
  55% {
    text-shadow:  0px 0 3px rgba(251, 0, 231, 0.8), 0 0px 3px rgba(0, 233, 235, 0.8), 0px 0 3px rgba(0, 242, 14, 0.8), 0 0px 3px rgba(244, 45, 0, 0.8), 0px 0 3px rgba(59, 0, 226, 0.8);
  }
  90% {
    text-shadow:  -5px 0 1px rgba(251, 0, 231, 0.8), 0 5px 1px rgba(0, 233, 235, 0.8), 5px 0 1px rgba(0, 242, 14, 0.8), 0 -5px 1px rgba(244, 45, 0, 0.8), 5px 0 1px rgba(59, 0, 226, 0.8);
  }
  100% {
    text-shadow: 5px 0 1px rgba(251, 0, 231, 0.8), 0 -5px 1px rgba(0, 233, 235, 0.8), -5px 0 1px rgba(0, 242, 14, 0.8), 0 5px 1px rgba(244, 45, 0, 0.8), -5px 0 1px rgba(59, 0, 226, 0.8);
  }
}
@keyframes rgbText {
  0% {
    text-shadow: 0px 0 1px rgba(251, 0, 231, 0.8), 0 0px 3px rgba(0, 233, 235, 0.8), 0px 0 3px rgba(0, 242, 14, 0.8), 0 0px 3px rgba(244, 45, 0, 0.8), 0px 0 3px rgba(59, 0, 226, 0.8);
  }
  25% {
    text-shadow:  0px 0 1px rgba(251, 0, 231, 0.8), 0 0px 3px rgba(0, 233, 235, 0.8), 0px 0 3px rgba(0, 242, 14, 0.8), 0 0px 3px rgba(244, 45, 0, 0.8), 0px 0 3px rgba(59, 0, 226, 0.8);
  }
  45% {
    text-shadow:  5px 0 1px rgba(251, 0, 231, 0.8), 0 5px 1px rgba(0, 233, 235, 0.8), -5px 0 1px rgba(0, 242, 14, 0.8), 0 -5px 1px rgba(244, 45, 0, 0.8), 5px 0 1px rgba(59, 0, 226, 0.8);
  }
  50% {
    text-shadow:  -5px 0 1px rgba(251, 0, 231, 0.8), 0 -5px 1px rgba(0, 233, 235, 0.8), 5px 0 1px rgba(0, 242, 14, 0.8), 0 5px 1px rgba(244, 45, 0, 0.8), -5px 0 1px rgba(59, 0, 226, 0.8);
  }
  55% {
    text-shadow:  0px 0 3px rgba(251, 0, 231, 0.8), 0 0px 3px rgba(0, 233, 235, 0.8), 0px 0 3px rgba(0, 242, 14, 0.8), 0 0px 3px rgba(244, 45, 0, 0.8), 0px 0 3px rgba(59, 0, 226, 0.8);
  }
  90% {
    text-shadow:  -5px 0 1px rgba(251, 0, 231, 0.8), 0 5px 1px rgba(0, 233, 235, 0.8), 5px 0 1px rgba(0, 242, 14, 0.8), 0 -5px 1px rgba(244, 45, 0, 0.8), 5px 0 1px rgba(59, 0, 226, 0.8);
  }
  100% {
    text-shadow: 5px 0 1px rgba(251, 0, 231, 0.8), 0 -5px 1px rgba(0, 233, 235, 0.8), -5px 0 1px rgba(0, 242, 14, 0.8), 0 5px 1px rgba(244, 45, 0, 0.8), -5px 0 1px rgba(59, 0, 226, 0.8);
  }
}




@keyframes jerk {
	50% {
		transform: translateX(1px);
	}
	51% {
		transform: translateX(0);
	}
}