@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;600;800&family=Poppins:wght@300;400;600&display=swap');

:root {
	/* backgrounds (made transparent) */
	--primary: rgba(34, 34, 34, 0.6);
    --secondary: rgba(28, 28, 28, 0.5);
	--third: #ddd;
	--border: rgba(19,20,23,0.7);

	/* text */
	--font-color: #f10000;

	/* Links / anchors */
	--anchor:#b39062;
	--anchor-hover:#e79424;

	/* alerts (slightly transparent) */
	--bg-danger: rgba(60,14,14,0.7);
	--color-danger: #9e5858;
	--border-danger: #350505;

	--bg-warning: rgba(144,92,0,0.7);
	--color-warning: #39280a;
	--border-warning: #322001;

	--bg-info: rgba(0,93,144,0.7);
	--color-info: #00263e;
	--border-info: #022530;

	--bg-success: rgba(0,144,57,0.7);
	--color-success: #003f0c;
	--border-success: #00380c;

	--bg-default: rgba(0,0,0,0.4);
	--color-default: #968452;
	--border-default: #000;
}

/* FONT CHANGE ONLY */
body {
	font-family: 'Poppins', sans-serif;
	color:#f3d191;
	background: linear-gradient(rgba(18,18,18,0.7), rgba(28,25,25,0.4)), url(../img/background.png);
	background-position: center;
	background-attachment: fixed;
	background-size: cover;
}

/* HEADINGS FONT */
h1, h2, h3, h4, .header, .widget h3, nav a {
	font-family: 'Orbitron', sans-serif;
	letter-spacing: 1px;
}

/* ===== KEEP EVERYTHING ELSE SAME ===== */

textarea {
    color: bisque;
}

body, ul { margin: 0; padding: 0; }
li { list-style: none; }

a { text-decoration: none;color:#c7770d; }
a:hover {color:var(--anchor-hover);}

a:hover, button:hover, input[type="submit"]:hover { 
cursor: pointer;
background: rgba(14,13,13,0.7);
}

* {transition: 0.2s;}
*:hover {transition: 0s;}

nav .container > div > ul > li > ul {
	position: absolute;
	border: 2px solid;
	border-top:none !important;
	border-color: var(--border);
	width: 200px;
}

nav { border: 1px solid var(--primary); }
nav .container { padding-left: 10px; }

nav .container > div > ul > li,
.modIcon:hover > i:nth-child(2) { display: inline-block; }

nav .container > div > ul > li > a { padding: 20px; }

nav .container > div > ul > li:hover > ul,
nav .container > div > ul > li > a,
nav .container > div > ul > li > ul > li > a { display: block; }

nav .container > div > ul > li > ul > li > a { padding: 10px 20px; }

nav .container, .preventCollapse, .ellipsis { overflow: hidden; }

.topPane { margin-bottom: 10px; }
.leftPane { width: 70%; }
.rightPane { width: 29%; }
.searchForm { width: 200px; }
.body { padding: 10px 0px; }

.header, .well, .smedia a {
	width: 100%;
}

td { padding: 5px 5px; }

.header { 
	color: #c7770d; 
	border-bottom: 2px solid var(--primary);
	border-top: 2px solid var(--primary);
}

.content {
	text-align: center;
}

.feedContainer { margin:2rem 0; }

.pull-left { float:left; }
.pull-right { float:right; }

.well, .header { width: auto; }

.centralizeContent { text-align: center; }

.smedia { font-size: 2em; }

/* TRANSPARENCY APPLIED HERE */
.leftPane, .rightPane, .topPane,
tr:nth-child(2n+1) {
	background: var(--secondary);
}

.table-100 {
	width: 100%;
}

.banner {
    background: url("../img/header.png");
    height: 240px;
    background-size: 100%;
    background-repeat: no-repeat;
    margin-top: 30px;
    border: 1px solid var(--primary);
}

input {
    height: 40px;
    border: 1px solid var(--border);
    color: var(--font-color);
    font-size: 1em;
    background: rgba(0,0,0,0.6);
}

#countDownTimer {
	line-height: 2.3;
	padding: 0px 10px;
	color: #5390a8;
}

.modIcon > i:nth-child(2),
.modIcon:hover > i:nth-child(1),
nav .container > div > ul > li > ul {
	display: none;
}

.loginForm {
    display: flex;
    flex-wrap: wrap;
}

button:hover {
	background: rgba(0,0,0,0.5);
}

button, input[type=submit], input[type=text], input[type=password] {
    margin-top: 10px;
	width: 98%;
}

input[type=search] {
	background: var(--primary);
}

.main {
	width: 1220px;
	margin: 1rem auto;
	position: relative;
	z-index: 1;
}

.ellipsis {
	text-overflow: ellipsis;
	white-space: nowrap;
}

.alert-box {
	max-width: 500px;
	font-size: 14px;
	border-radius: 5px;
	border: 1px solid var(--third);
	margin: 0 auto;
	margin-bottom: 15px;
	text-align: center;
}

.feedContainer, nav .container, .topPane {
	background: rgba(0,0,0,0.45);
	border-bottom: 2px solid var(--border);
}

.vertical-menu a {
	color: var(--anchor) !important;
}