/**
 * Resets
 */

@font-face {
  font-family: 'Eurostile-Bold-Ex';
  font-weight: normal;
  font-style: normal;
  src: url('https://files.persona.co/105080/EurostileLTStd-BoldEx2.woff') format('woff');
}

@font-face {
  font-family: 'Vivaldi';
  font-weight: normal;
  font-style: normal; 
  src: url('https://files.persona.co/110917/VIVALDI.woff') format('woff');
}

@font-face {
  font-family: 'Eurostile-Ex';
  font-weight: normal;
  font-style: normal;
  src: url('https://files.persona.co/105080/EurostileLTStd-Ex2.woff') format('woff');
}

@font-face {
  font-family: 'Blitz';
  font-weight: normal;
  font-style: normal;
  src: url('https://files.persona.co/105080/Blitz-Script.woff') format('woff');
}

@font-face {
  font-family: 'ANK24';
  font-weight: normal;
  font-style: normal;
  src: url('https://files.persona.co/105080/Web437_DOS-V_re_ANK24.woff') format('woff');
}

.footer {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  background-color: rgba(255, 0, 0, 0);
  color: #000;
  text-align: center;
}


@keyframes flicker {
  50%{opacity: 0.1}     

}

.flicker {
  animation: flicker .01s infinite;
}

.clock {
  color: #403933;
  font-size: 1.5rem;
  font-family: Arial Narrow;
  letter-spacing: 0px;
}


sticky {
    top: 4rem;
    position: fixed;

}


* {
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

::-moz-selection {
	background-color: #b6ff00;
	color: #fff;
}

::selection {
	background-color: #b6ff00;
	color: #e1ffd4;
}

:focus {
	outline: 0;
}

customhtml > * {
	position: relative;
    z-index: 10;
}

.tooltip {
    text-decoration:none;
    
}
.tooltip span {
    display: none;
    text-decoration: none;
 }
.tooltip:hover span {
    display: inline;
    position: fixed;
    overflow: hidden;
    z-index: -999;
    top: 20%;
  	left: 40%;
    transform: rotate(0deg);
    pointer-events:none;
}

@keyframes tooltip {
    0% { transform: translate(100%, 0); -webkit-transform: translateX(100%); }
    100% { transform: translate(-100%, 1); -webkit-transform: translateX(-100%); }
}

/**
 * Global
 */

body,
html {
	min-height: 100vh;
	margin: 0px;
	padding: 0px;
    cursor: crosshair;
}

html {
	position: relative;
}

body {
	background: #b6ff00;
	color: #462ef9;
}

a:active {
	opacity: 0;
}

/**
 * Backdrop
 */

#backdrop {
	position: absolute;
	right: 0;
	top: 0;
	bottom: 0;
	z-index: -5;
}

/**
 * Container
 */

main {
	background: #fff;
	clear: both;
	overflow: hidden;
	position: absolute;
	max-width: 100%;
	width: 100%;
	z-index: 2;

	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;

	-webkit-flex-wrap: wrap;
	-moz-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;

	-webkit-align-items: center;
	-moz-align-items: center;
	-ms-align-items: center;
	align-items: center;
}

main > div {
	-moz-flex: 1 0 auto;
	-webkit-flex: 1 0 auto;
	flex: 1 0 auto;
	width: 100%;
}


.subpage_overlay {
	display: block;
	pointer-events: none;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1;
}

body.homepage .subpage_overlay {
	display: none;
}
/**
 * Content
 */

i, em {
	font-style: italic;
}

b, strong {
	font-weight: bold;
}

ul, ol {
	margin: 0;
	padding: 0 0 0 1em;
}

sup {
	top: -0.4em;
	vertical-align: baseline;
	position: relative;
}

sub {
	top: 0.3em;
	vertical-align: baseline;
	position: relative;
}

s {
	
}

.slideshow-nav { 
	margin-bottom: 3.5em; 
}

img {
	border: 0;
	padding: 0;
}

blockquote {
	margin: 0;
	padding: 0 0 0 2em;
}

hr {
	background: rgba(115, 107, 101, 1);
	border: 0;
	height: 0.08em;
	display: block;
}

.bodycopy {
	display: none;
}

.container {
	min-height: 100%;
}

.content img {
	float: none;
	margin-bottom: 1em;
}

.clear:after {
	content: "";
	display: table;
	clear: both;
}

.loading[data-loading] {
	display: none;
	position: fixed;
	top: 8px; left: 8px;
	z-index: 100;
}

/**
 * Editor styles
 */

[data-css-presets="true"] main {
	background-color: rgba(125, 0, 0, 0) /*!content_left*/;
	text-align: left /*!text_left*/;
	min-height: 100vh /*!content_stretch*/;
	-webkit-align-items: flex-start /*!vertical_top*/;
	align-items: flex-start /*!vertical_top*/;
	left: 0 /*!content_left*/;
}

[data-css-presets="true"] .content_padded {
	padding: 5rem/*!main_margin*/;
}

[data-css-presets="true"] .content_width {
	width: 100% /*!content_left*/;
}

[data-css-presets="true"] #backdrop {
	width: 100% /*!background_cover*/;
}

[data-predefined-style="true"] main {
	font-size: 1.4rem;
	font-weight: 400;
	color: rgb(64, 57, 51);
	font-family: "Arial Narrow", Social /*!Persona*/;
	font-style: normal;
	line-height: 1.3;
    position: sticky;
}

[data-predefined-style="true"] main a {
	color: rgb(64, 57, 51);
    padding-bottom: 0em;
    border-bottom: 0em none rgba(61, 255, 0, 1);
    text-decoration: none;

}

[data-predefined-style="true"] main a:hover {
    color: rgb(182, 255, 0);
    animation: none;
    font-family: "ANK24";
    font-style: normal;
}

main a.image-link,
main a.icon-link,
main a.image-link:hover,
main a.icon-link:hover {
	border-bottom: 0;
	padding-bottom: 0;

}

[data-predefined-style="true"] h1 {
	font-family: "Arial Narrow", sans-serif; /*!Google*/;
	font-style: condensed;
	font-weight: 400;
	padding: 0;
	margin: 0;
	font-size: 8rem;
	line-height: 10.4rem;
	color: rgb(70, 62, 55);
	text-rendering: optimizeLegibility;
    text-transform: none;
    text-decoration-line: none;
    letter-spacing: -.5rem;
}

[data-predefined-style="true"] h1 a {
	color: rgb(64, 57, 51);
}

[data-predefined-style="true"] h2 {
	font-family: 'Eurostile-Bold-Ex';
	font-weight: 100;
	padding: 0;
	margin: 0;
	color: rgb(64, 57, 51);
	font-size: .7rem;
	line-height: 2;
	text-rendering: optimizeLegibility;
}

[data-predefined-style="true"] h2 a {
	color: rgba(172, 248, 106, 1);
}

[data-predefined-style="true"] small {
	display: inline-block;
	font-size: 1.2rem;
	line-height: 1.4;
	font-family: 'Eurostile-Ex', Social /*!Persona*/;
	font-style: normal;
	font-weight: 400;
	color: rgb(182, 255, 0);
}

[data-predefined-style="true"] small a {
	color: rgba(207, 207, 207, 0.4);
	border-bottom-width: 0.1em;
}


[data-css-presets="true"] .subpage_overlay {
	background-color: rgba(23, 244, 63, 0)/*!subpage_overlay*/;
}
/**
 * Backstage Icon
 */

#backstage_icon {
	display: block;
}

/**
 * Breakpoints
 */

[data-css-presets="true"].mobile #plugin,
[data-css-presets="true"].mobile #backdrop,
.mobile #backdrop,
.mobile #plugin {
	position: relative;
	height: 50vh;
	min-width: 100%;
	width: calc(100% - 80rem) /*!right_fit*/;
	top: 0;
	bottom: auto;
	left: 0 /*!right_fit*/;
}

.mobile main,
[data-css-presets="true"].mobile main {
	position: relative;
	min-height: 10px;
	max-width: 100%;
	width: 100%;
}

.mobile main.content_width,
[data-css-presets="true"].mobile main.content_width {
	max-width: 100%;
	width: 100%;
}
