﻿
/* ================================ CSS Reset  ================================*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/*============================== General Styles ======================================*/
body{
    font-family: "DroidSans-Regular", Sans-Serif;
    background-color: #fff;
}

*{
    box-sizing: border-box;
    /*user-select: none;*/
}
/*============================== Error Page Styles ======================================*/
.error-wrapper 
{
	font-family: "DroidSans-Regular", Sans-Serif;
	background-color: #fff !important;
	display: flex;
	height: 100vh;
	align-items: center;
	}
	
.error-inner-wrapper 
{
	padding: 5px;
	}

.error-content-right 
{
	padding: 30px;
	}

.error-content-left 
{
	padding: 30px;
	}
	
	
.error-content-left h1
{
	font-size: 60px;
	margin-bottom: 15px;
	letter-spacing: 2px;
	font-family: "DroidSans-Bold";
	}
	
.error-content-left p
{
	font-size: 30px;
	letter-spacing: 1px;
	}
	
.error-content-left img 
{
	display: block;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 20px;
	}
	
.error-content-right img
{
	display: block;
	margin-left:auto;
	margin-right: auto;
	}

.yellow-button 
{
	padding: 10px 20px 10px 20px;
	background-color: #ffc600 !important;
	color: #000 !important;
	font-size: 20px;
	font-weight: 300 !important;
	border-radius: 0;
	}

#second-button-handler 
{
	display: none;
	}

.btn-etiqa-yellow 
{
	margin-top: 10px; 
	background-color: #ffbf00 !important; 
	font-family: 'DroidSans-Bold'; 
	line-height: 1.25; 
	font-size: 18px;
	padding: 0.5rem 0.75rem;
	color: #333333 !important;
	}
	
@media (max-width: 600px)
{	
	.error-content-left 
	{
		padding: 5px;
		margin-top: 5%;
		}
	
	.error-content-left h1
	{
		font-size: 40px;
		margin-bottom: 15px;
		letter-spacing: 2px;
		}
	
	.error-content-left p
	{
		font-size: 20px;
		letter-spacing: 1px;
		}
		
	#second-button-handler  
	{
		display: inline;
		}
	
	#first-button-handler 
	{
		display: none;
		}
	}

@font-face {
    font-family: "DroidSans-Bold";
    src: url('../fonts/DroidSans-Bold_0.ttf');
    font-display: fallback;
}

@font-face {
    font-family: "DroidSans-Regular";
    src: url('../fonts/DroidSans-Regular_0.ttf');
    font-display: fallback;
}