@font-face {
	font-family: 'Brandon';
	src: url('../assets/fonts/Brandon/Brandon_reg.otf');
}

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: 0px;
	padding: 0px;
	border: 0px;
	font-size: 100%;
	font: inherit;
	outline: none;
	vertical-align: baseline;
}

input, button {
	border: none;
	outline: none;
}



label, button {
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

body {
	overflow: hidden;
	position: absolute;
	margin: 0px;
	padding: 0px;
	top: 0px;
	left: 0px;
	
	height: 100%;
	width: 100%;
}

#rootPanel{
	position: absolute;
	top: 0px;
	left: 0px;
	height: 100%;
	width: 100%;
	margin: 0;
	padding: 0;
	font-family: calibri;
}


/*alerts*/
.tna-modal{
	width: 400px;
	margin: auto;
	margin-top: 12%;
	-webkit-box-shadow: 10px 10px 13px -9px rgba(0,0,0,0.75);
	-moz-box-shadow: 10px 10px 13px -9px rgba(0,0,0,0.75);
	box-shadow: 10px 10px 13px -9px rgba(0,0,0,0.75);
	background-color: white;
	padding: 10px;
	color: #4d4b4bcc;
}

.tna-modal h1{
	font-size: 24px;
	margin-bottom: 10px;
	color: #28619d;
}

.tna-modal-mPnl{
	margin: 10px 0;
}

.tna-modal-bPnl{
	text-align: right;
}

.tna-modal-bPnl button{
	width: 25%;
	height: 25px;
	border: 2px solid #28619d;
	background-color: white;
	cursor: pointer;
	margin-right: 5px;
}

.tna-modal-bPnl option{
	width: 25%;
	height: 25px;
	border: 2px solid black;
	background-color: white;
	cursor: pointer;
}

.tna-modal-bPnl button:focus{
	background-color: #28619d;
	color: white;
}

.tna-modal-noBtn {
	color: #28619d;
}

/* loading screen*/
.tna-overlay {
	position: fixed;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	background-color: #a7a7a71a;
	z-index: 999;
}

.tna-spinner {
  border: 8px solid #ffffff4d;
	border-top: 8px solid #28619d;
	border-radius: 50%;
	width: 50px;
	height: 50px;
	animation: spin 0.6s linear infinite;
  top: 0;
	position: absolute;
	left: 0;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}


@media screen and (max-width: 550px) {
    .tna-modal {
		width: calc(100vw - 10%);
	}
}