@charset "utf-8";





.terminal-input {
	/* IE 8 */
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)" !important;
	/* IE 5-7 */
	filter: alpha(opacity=0) !important;
	/* Netscape */
	-moz-opacity: 0 !important;
	/* Opera */
	-o-opacity: 0 !important;
	/* Safari 1.x */
	-khtml-opacity: 0 !important;
	/* Good browsers */
	opacity: 0.0 !important;
	position: fixed;
	top: 0;
	left: 0;
}

html:root .terminal-input input, 
.terminal-input input, 
.terminal-input input:hover, 
.terminal-input input:active, 
.terminal-input input:focus {
	zoom: 0.1;
	outline: 0 !important;
	/* IE 8 */
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)" !important;
	/* IE 5-7 */
	filter: alpha(opacity=0) !important;
	/* Netscape */
	-moz-opacity: 0 !important;
	/* Opera */
	-o-opacity: 0 !important;
	/* Safari 1.x */
	-khtml-opacity: 0 !important;
	/* Good browsers */
	opacity: 0.0 !important;
	position: fixed;
	top: 0;
	left: 0;
	background-color: rgba(0, 0, 0, 0.0);
	color: rgba(0, 0, 0, 0.0);
}

/*
 * Terminal Başlık ve Satır Alanı
 */
.terminal-header, .terminal {
	word-wrap: break-word;
}

/*
 * Terminal Başlık
 */
.terminal-header {
	position: fixed;
	background: #000;
	width: 100%;
	z-index: 2;
	padding: 4rem 4rem 1px 4rem;
	/* animation: blur 1s infinite, shake 10s infinite; */
}

/* Başlık Titretme */
.def-swek {
	-khtml-animation: shake 300ms infinite;
	-webkit-animation: shake 300ms infinite;
	-moz-animation: shake 300ms infinite;
	-ms-animation: shake 300ms infinite;
	-o-animation: shake 300ms infinite;
	animation: shake 300ms infinite;
}

/* Komut İşlediğinde Başlık Alanı Alt Gölgesi */
.terminal-header.def-cmd-border {
	border-bottom: 1px solid rgba(31,240,66, .5);
	-khtml-box-shadow: 0px -32px 85px 27px rgba(31,240,66,1);
	-webkit-box-shadow: 0px -32px 85px 27px rgba(31,240,66,1);
	-moz-box-shadow: 0px -32px 85px 27px rgba(31,240,66,1);
	-ms-box-shadow: 0px -32px 85px 27px rgba(31,240,66,1);
	-o-box-shadow: 0px -32px 85px 27px rgba(31,240,66,1);
	box-shadow: 0px -32px 85px 27px rgba(31,240,66,1);
}

.terminal-header .header-line {
	display: block;
	font-weight: bold;
	text-transform: uppercase;
	font-size: 0.9em;
	letter-spacing: 0.15em;
	white-space: pre-wrap;
	text-shadow: 0 0 2px rgba(31, 240, 66, 0.75);
	line-height: 1;
	margin-bottom: 0.75em;
}

.terminal-header .header-line:before {
	content: 'Sys:\\> ';
	display: inline-block;
}

/*
 * Terminal Satır Alanı
 */
.terminal {
	position: absolute;
	width: 100%;
	min-height: 85%;
	top: 15%;
	z-index: 1;
	padding: 1px 4rem 10rem 4rem;
}

/* Komut Girildiğinde Terminal Alanının Bulanıklaştırılması İPTAL */
.terminal.def-terminal-blur {
	-khtml-filter: blur(4px);
	-webkit-filter: blur(4px);
	-moz-filter: blur(4px);
	-ms-filter: blur(4px);
	-o-filter: blur(4px);
	filter: blur(4px);
}

/*
 * Terminal Satırı
 */
.terminal .line {
	/*display: inline-block;
	width: 100%;

	margin-bottom: 0.75em;
	background: red;*/
}

.terminal pre {
	background: transparent;
    overflow: hidden;
	display: block;
	margin-bottom: 0.75em;

	font-family: 'anonymous_proregular';
	font-size: 0.9em;
	font-weight: bold;

	text-transform: initial;
	text-shadow: 0 0 2px rgba(31, 240, 66, 0.75);
	line-height: 1.3;

	letter-spacing: 0.15em;
	word-break: break-all;
	white-space: pre-wrap;
	word-wrap: break-word;
}

.terminal img {
	text-align: center;
}	

/*
 * Terminal Satır İğnesi
 */
.terminal .needle:before {
	content: attr(data-before);
	display: inline;
	padding-right: 1em;
}

/*
 * Komut İmleci (Yanıp Sönme)
 */
.terminal .commandCursor {
	display: inline-block;
}

.terminal .commandCursor:after {
	display: inline-block;
	vertical-align: -0.15em;
	width: 0.75em;
	height: 1em;
	background: #1ff042;
	box-shadow: 1px 1px 1px rgba(31, 240, 66, 0.65), -1px -1px 1px rgba(31, 240, 66, 0.65), 1px -1px 1px rgba(31, 240, 66, 0.65), -1px 1px 1px rgba(31, 240, 66, 0.65);
	content: '';
}

.terminal .commandCursor.blinkOn:after {

	/*
	-webkit-animation: textBlink 1.25s steps(1) infinite;
			animation: textBlink 1.25s steps(1) infinite;
	*/

	-khtml-animation: textBlink 1s linear infinite;
	-webkit-animation: textBlink 1s linear infinite;
	-moz-animation: textBlink 1s linear infinite;
	-o-animation: textBlink 1s linear infinite;
	-ms-animation: textBlink 1s linear infinite;
	animation:textBlink 1s linear infinite;
}

@media (max-width: 800px) {
	.terminal-header {
		padding: 2rem 1rem 1px 1rem;
	}
	.terminal {
		padding: 17px 1rem 5px 1rem;
	}
}