/*---by saaiqSAS---*/
body {
	background-color: #296D7A;
	background: rgb(1,55,65);
    background: linear-gradient(0deg, rgba(10,30,40,1) 10%, rgba(1,55,65,1) 70%, rgba(41,109,122,1) 95%);
	color: #FFFFFF;
	font-family: sans-serif;
	opacity: 0;
	animation-name: bodyAnimation;
	animation-duration: 0.5s;
	animation-iteration-count: 1;
	animation-fill-mode: forwards;
}

@keyframes bodyAnimation {
	0%{
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

main {
	margin-left: 10px;
	margin-right: 10px;
}

#background-image {
	position: absolute;
	float: top;
	z-index: -1;
	height: 800px;
	width:100%;
	overflow: hidden;
	transform: translate(-8px,-10px);
	user-drag: none; 
	user-select: none;
	-moz-user-select: none;
	-webkit-user-drag: none;
	-webkit-user-select: none;
	-ms-user-select: none;
	draggable: false;
	
}

@media screen and (max-width: 800px) {
	#background-image {
		position: absolute;
		float: top;
		z-index: -1;
		height: 1080px;
		width:100%;
		overflow: hidden;
		transform: translate(-8px,-10px);
		
	}
}

.footer {
    width: 100%;
	text-align: right;
	background-color: #202020;
}

.footer p {
    max-width: 80%;
}

a {
	text-decoration: none;
	color: #aaaaaa;
}

.redirectText {
	text-decoration: underline;
}

.redirectText:hover {
	color: #757575;
}

hr {
	background-color: #fbf8f3;
	height: 3px;
	margin-top: 50px;
	margin-left: 10px;
	margin-right: 10px;
}

::-moz-selection {
  color: #fbf8f3;
  background: #296D7A;
}

::selection {
  color: #fbf8f3;
  background: #296D7A;
}

p {
	max-width: 700px;
}

#hdr {
	padding-bottom: 110px;
	padding-right: 10px;
}
/*---navigation Bar---*/
#navBar {
	margin-bottom: 50px;
	height: 65px;
	transform: translate(-250px,0px);
	animation-name: navBarAnimation;
	animation-duration: 1.15s;
	animation-iteration-count: 1;
	animation-fill-mode: forwards;
	-webkit-transition: all 0.5s ease;
    	-moz-transition: all 0.5s ease;
    	-o-transition: all 0.5s ease;
    	-ms-transition: all 0.5s ease;
    	transition: all 0.5s ease;
	float: left;
}

@keyframes navBarAnimation {
	0%{
		transform: translate(-250px,00px);
	}
	100% {
		transform: translate(-10px,0px);
	}
}


#logoDiv {
	float: left;
	height: 100%;
	padding-left: 5px;
	padding-right: 5px;
	text-align: center;
}

.logo {
	display: block;
	color: #006600;
	height: 40px;
	float: left|center;
	margin-left: 5px;
	margin-right: 5px;
	padding-left: 2px;
	padding-right: 2px;
	margin-top: 16px;
	user-drag: none; 
	user-select: none;
	-moz-user-select: none;
	-webkit-user-drag: none;
	-webkit-user-select: none;
	-ms-user-select: none;
	draggable: false;
}

@media screen and (min-width: 600px) {
	#logoDesktop { 
		display: block;
	}
	
	#logoMobile { 
		display: none;
	}
	

}


@media screen and (max-width: 600px) {
	#logoDesktop { 
		display: none;
	}
	
	#logoMobile {
		display: block;
	}
	
	.logo {
		height: 60px;
		margin-top: 6px;
	}
}

#logoMobile:hover {
	animation-name: logoDivHover;
	animation-duration: 1s;
	animation-iteration-count: 1;
	animation-direction: forwards;
}

@keyframes logoDivHover {
	0%{
		transform: rotate(0deg)
	}
	100%{
		transform: rotate(360deg);
	}
}

#nav_sources {
	width: 100px;
	color: #296D7A;
	background-color: #fbf8f3;
	border: solid 2px #296D7A;
	border-left: solid 1px #296D7A;
	border-radius: 0px 25px 25px 0px;
	text-align: center;
	font-weight: 600;
	padding: 10px;
	-webkit-transition: all 0.2s ease;
    	-moz-transition: all 0.2s ease;
    	-o-transition: all 0.2s ease;
    	-ms-transition: all 0.2s ease;
    	transition: all 0.2s ease;
	float: right;
}

#nav_sources:hover {
	color: #fbf8f3;
	background-color: #296D7A;
}

#articles {
	width: 100px;
	color: #296D7A;
	background-color: #fbf8f3;
	border: solid 2px #296D7A;
	border-right: solid 1px #296D7A;
	border-radius: 25px 0px 0px 25px;
	text-align: center;
	font-weight: 600;
	padding: 10px;
	-webkit-transition: all 0.2s ease;
    	-moz-transition: all 0.2s ease;
    	-o-transition: all 0.2s ease;
    	-ms-transition: all 0.2s ease;
    	transition: all 0.2s ease;
	float: right;
}

#articles:hover {
	color: #fbf8f3;
	background-color: #296D7A;
}

.blue_border_box{
	color: #296D7A;
	padding: 20px;
	border-radius: 25px;
	border: solid 2px #296D7A;
	font-size: 20px;
	margin-top: 10px;
	line-height: 20px;
	max-width: 500px;
}

keys {
	color: #296D7A;
	font-size: 24px;
	width: 10px;
	border: solid 1px #296D7A;
	border-radius: 4px;
	padding-left:6px;
	padding-right:6px;
	font-family: 'Courier New', monospace;
}

#notification {
	position: fixed;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	min-width: 280px;
	z-index: 9999;

	border: solid 2px #296D7A;
	max-width: 800px;
	background-color: #fbf8f3;
	padding: 10px 70px;
	border-radius: 25px;
	opacity: 0.95;
	
	color: #296D7A;
	text-align: center;
	font-weight: bold;
	font-size: 20px;
	

	box-shadow: -2px 18px 37px -11px rgba(0, 0, 0, 0.75);
	transition: opacity 0.5s ease;
	
}


#notification.hidden {
	opacity: 0;
	pointer-events: none;
}


.intro-text {
	color: #296D7A;
}

.note {
	color: #ffffff;
	max-width: 90%;
	margin: 50px 5px;
}


#developer {
	font-size: 18px;
	color: #aaaaaa;
	font-weight: 600;
}

saaiqSAS {
	-webkit-transition: all 0.3s ease;
    	-moz-transition: all 0.3s ease;
    	-o-transition: all 0.3s ease;
    	-ms-transition: all 0.3s ease;
    	transition: all 0.3s ease;
}

saaiqSAS:hover {
	color: #ffffff;
	text-shadow: 0 0 10px #fff, 0 0 20px #9900CC, 0 0 30px #9900CC,  0 0 50px #9900CC;
}


#intro {
	max-width: 700px;
	margin-bottom: 220px;
	font-weight: 600;
}

@media screen and (max-width: 800px) {
	#intro {
		max-width: 700px;
		margin-bottom: 260px;
		font-weight: 600;
	}
}

#alert_intro {
	margin-bottom: 50px;
	font-style: italic;
}

#rate_button {
	width: 100px;
	padding: 8px 10px;
	background-color: #fbf8f3;
	border: solid 2px #296D7A;
	color: #296D7A;
	font-weight: 600;
	text-align: center;
	float: center;
	border-radius: 100px;
	margin-top: 40px;
	-webkit-transition: all 0.2s ease;
    	-moz-transition: all 0.2s ease;
    	-o-transition: all 0.2s ease;
    	-ms-transition: all 0.2s ease;
    	transition: all 0.2s ease;
	
}

#rate_button:hover {
	background-color: #296D7A;
	color: #fbf8f3;
	cursor: pointer;
}

#options_box {
	/*position: -webkit-sticky;
	position: sticky;
	top: 8px;
	opacity: 0.9;
	*/
	
	max-width: 800px;
	color: #296D7A;
	background-color: #FFFFFF;
	padding: 5px;
	border-radius: 25px;
	margin-top: 320px;
	padding-bottom: 15px;
	box-shadow: -2px 18px 37px -11px rgba(0,0,0,0.75);
	-webkit-box-shadow: -2px 18px 37px -11px rgba(0,0,0,0.75);
	-moz-box-shadow: -2px 18px 37px -11px rgba(0,0,0,0.75);
}

#options_box div p {
	display: inline;
}


@media screen and (max-width: 700px) {
	#options_box {
		margin-top: 400px;
	}
	#options_box div {
		width: 400px;
	}
	
	#display_size {
		margin-top: 14px;
	}
		
}



#test_text {
	width: 350px;
	height: 42px;
	border: solid 2px #296D7A;
	color: #296D7A;
	font-family: "Faruma";
	border-radius: 50px;
	padding-left: 20px;
	padding-right: 20px;
	font-size: 24px;
	-webkit-transition: all 0.5s ease;
    	-moz-transition: all 0.5s ease;
    	-o-transition: all 0.5s ease;
    	-ms-transition: all 0.5s ease;
    	transition: all 0.5s ease;
	direction: rtl;
    unicode-bidi: bidi-override;	
	margin-bottom: 20px;
}

#test_text:focus {
	outline: none !important;
}
	
@media screen and (min-width: 700px) {
	#test_text {
		width: 550px;
	}
	#test_text:focus {
		outline: none !important;
		transform: scale(1.1);
	}
}


#display_text_color {
	border: 2px solid #296D7A;
	border-radius: 10px;
	height: 30px;
}

#display_background_color {
	border: 2px solid #296D7A;
	border-radius: 10px;
	height: 30px;

}

#display_size {
	font-size: 20px;
	border: 2px solid #296D7A;
	border-radius: 10px;
	color: #296D7A;
	height: 24px;
	padding-left: 5px;
	padding-right: 5px;
}

#rate_form_box {
	max-width: 720px;
	height: 800px;
	margin: 10px auto;
	border-radius: 20px;
	background-color: #ffffff;
	overflow:hidden;
	
	box-shadow: -2px 18px 37px -11px rgba(0,0,0,0.85);
	-webkit-box-shadow: -2px 18px 37px -11px rgba(0,0,0,0.85);
	-moz-box-shadow: -2px 18px 37px -11px rgba(0,0,0,0.85);
}

#rate_form {
	width: 100%;
	height: 1000px;
}

.listing {
	max-width: 1000px;
	background-color: #ffff99;
	border: solid 2px #DEBA50;
	border-radius: 20px;
	padding: 10px 10px;
	margin: 26px auto;
	background-image: linear-gradient(0deg, #452c16 46.77%, #291504 46.77%, #291504 50%, #452c16 50%, #452c16 96.77%, #291504 96.77%, #291504 100%);
	background-size: 62.00px 62.00px;
}

.font_display {
	max-width: 1000px;
	border: none;
	background-color: #000000;
	color: #ffffff;
	direction: rtl;
    unicode-bidi: bidi-override;	
	text-align: center;
	font-size: 38px;
	padding: 30px 10px;
	border-radius: 20px;
	overflow: hidden;
	display: block;
	margin: 10px auto;
	
}

.font_name {
	max-width: 1000px;
	min-width: 200px;
	font-size: 16px;
	font-weight: 600;
	color: #DEBA50;
	text-align: left;
	display: block;
	margin: 0px;
	margin-top: 20px;
	transform: translate(0px, 15px);
}

.horizontal {
	max-width: 1000px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	margin: 0px auto;
	
}

.font_source {
	font-size: 16px;
	font-weight: 600;
	color: #DEBA50;
	text-align: left;
	float: left;
	transform: translate(0px, 15px);
	
}

.font_download {
	width: 200px;
	height: 40px;
	background-color: #452c16;
	border: solid 2px #DEBA50;
	color: #DEBA50;
	font-weight: 600;
	text-align: center;
	float: right;
	padding-bottom: 10px;
	border-radius: 20px;
	-webkit-transition: all 0.2s ease;
    	-moz-transition: all 0.2s ease;
    	-o-transition: all 0.2s ease;
    	-ms-transition: all 0.2s ease;
    	transition: all 0.2s ease;
	
}

.font_download:hover {
	background-color: #DEBA50;
	color: #452c16;
}

.ad_image {
    display: block;
    max-width: 90%;
    width: auto; 
    height: auto; 
	
	margin: 0px auto;
	border-radius: 20px;
	box-shadow: 1px 16px 29px -4px rgba(0,0,0,0.75);
	-webkit-box-shadow: 1px 16px 29px -4px rgba(0,0,0,0.75);
	-moz-box-shadow: 1px 16px 29px -4px rgba(0,0,0,0.75);
	
	-webkit-transition: all 0.2s ease;
    	-moz-transition: all 0.2s ease;
    	-o-transition: all 0.2s ease;
    	-ms-transition: all 0.2s ease;
    	transition: all 0.2s ease;
}

.ad_image:hover {
    display: block;
    width: auto; 
    height: auto; 
	
	margin: 0px auto;
	border-radius: 20px;
	box-shadow: 1px 16px 29px -4px rgba(0,0,0,0.9);
	-webkit-box-shadow: 1px 16px 29px -4px rgba(0,0,0,0.9);
	-moz-box-shadow: 1px 16px 29px -4px rgba(0,0,0,0.9);
	
	transform: scale(1.02, 1.02);
}


@media screen and (max-width: 600px) {
	
	.listing {
		padding: 10px 15px;
	}

	.font_display {
		font-size: 24px;	
	}
	
	.font_download {
		width: 150px;
	}
	
	.font_source, .font_name {
		font-size: 13px;
	}
	
	.ad_image {
		max-width: 100%;
	}
	
	#rate_form_box {
	height: 900px;
	}

	
}
