/* SiaSetup.com Custom CSS 
   Designed by RBZL, 2018 */


/* Header logo image tweaks */
#header h1 {
	left: 2.5em !important;
}
#header h1 img {
	vertical-align: middle !important;
	width: 96px;
	height: 96px;
}
#header h1 a {
	text-decoration: none !important;
}


/* Nav bar */
body:not(.landing) #nav ul li ul {
	background-color: #383b43;
}
body.landing #nav ul li ul {
	background: linear-gradient(transparent, #383b43);
}
#nav ul li ul {
	display: none;
	list-style: none;
	margin: -2em 0 0 -1em;
	padding: 0 1em 0.5em 1em;
	border-radius: 6px;
	white-space: nowrap;
	z-index: 100;
}
#nav ul li ul li {
	padding: 0;
	line-height: 2em;
}
#nav ul li:hover ul {
	display: block;
	position: absolute;
}
/* Kind of a hacky way to make these stay on screen and align, but eh */
#nav ul li:nth-of-type(4) ul, #nav ul li:nth-of-type(5) ul {
	right: 0;
	text-align: right;
}
#nav ul li:nth-of-type(4) ul {
	margin-right: 5.5em;
}
#nav ul li:nth-of-type(5) ul {
	margin-right: -1.0em;
} 


/* Home Banner Text*/
#banner p {
	position: relative;
	max-width: 70%;
	left: 50%;
	transform: translateX(-50%);
}


/* Footer */
footer div.about {
	color: #ffffff;
}
	footer div.about div {
		height: 40px;
		line-height: 40px;
	}
	footer div.about div:nth-of-type(2) {
		text-align: right;
	}
	footer div.about img {
		margin-left: 5px;
		vertical-align: middle;
	}


/* Major Elements */
a, h4 a, h5 a {
	color: #00CBA0;
}
code {
	white-space: nowrap;
}
p.small {
	font-size: 80%;
}
	/* Lists */
	ol, ul {
		margin-bottom: 1em;
	}
		ol li p:last-child {
			margin-bottom: 0;
		}
			
		ul li p, ol li p {
			margin-bottom: 0.5em;
		}
		ul#tips li {
			display: none;
		}


/* Headings */
header h3 + p, header h4 + p {
    margin-top: -1.2em !important;
}
h3 a.link, h4:not(.accordion) a.link {
	display: none;
}
h3:hover a.link, h4:hover a.link {
	display: inline;
}
h3 a.link img, h4 a.link img {
	width: 20px;
	height: 20px;
	vertical-align: middle;
}
section.faq h4:not(.accordion):first-of-type {
	margin-top: 2em;
} 
h4.tip-highlight {
	color: red;
}	
h5 a.link img {
	width: 16px;
	height: 16px;
	vertical-align: middle;
}


/* Images */
img.center {
	display: block;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 1.5em;
	max-width: 100%;
	height: auto;
}
img.left {
	float: left;
}
img.right {
	float: right;
}
img.rt-icon { /* Real-time Price Icon */
	width: 18px;
	height: 18px;
	display: none;
	margin: 0 5px;
	vertical-align: middle !important;
}
	img.rt-icon.show {
		display: inline !important;
	}
	

/* Misc Classes */
	.hide {
		display: none !important;
	}
	.updated {
		width: 100%;
		text-align: right;
		color: #858585;
	}
	.right:not(img) {
		float: right;
		margin-left: 20px;
		margin-bottom: 5px;
	}
	.left:not(img) {
		float: left;
		margin-right: 20px;
		margin-bottom: 5px;
	}
	.youtube iframe {
		width: 560px;
		height: 315px;
	}
	p.caption {
		margin-top: -1.2em;
		text-align: center;
		font-style: italic;
	}
		.image.left p.caption, .image.right p.caption {
			margin: 0 0 0 0;
		}
		.right p.caption {
			margin: 0;
		}
	.contact-actions {
		text-align: right;
	}
	.next-nav {
		text-align: right;
	}
	.highlight {
		background-color: #FF0;
	}


/* Items by ID */
	#goToTop {
		display: none;
		position: fixed; 
		bottom: 20px; 
		right: 30px;
		z-index: 99; 
		cursor: pointer; 
	}
		#goToTop:before {
			content: "Go To ";
		}
	#share_highlight {
		display: none;
		position: absolute;
		background-color: #FFF;
		border: 1px solid #383b43;
		border-radius: 3px;
		padding: 0.5em;
		box-shadow: 5px 5px rgba(56, 59, 67, 0.5);
		cursor: pointer;
	}
		#share_highlight img {
			width: 16px;
			height: 16px;
			vertical-align: baseline;
		}
		#share_highlight.show {
			display: block !important;
		}
	/* Recaptcha formatting for HTML5 required */
	#g-recaptcha-response {
		display: block !important;
		position: absolute;
		margin: -78px 0 0 0 !important;
		width: 302px !important;
		height: 76px !important;
		z-index: -999999;
		opacity: 0;
	}


/* Boxes */
.notice, .warning, .error {
	width: 100%;
	border-radius: 4px;
	padding: 0.6em 0.6em 0.6em 48px;
	margin-bottom: 1.5em;
	background-repeat: no-repeat;
	background-position: 12px 12px;
}
	.notice {
		background-color: #D7D7FF;
		background-image: url('../images/icon_info.png');
	}
		.notice a {
			color: rgb(66, 139, 202);
			font-weight: bold;
		}
	.warning {
		background-color: #FFD7D7;
		background-image: url('../images/icon_warning.png');
	}
		.warning a {
			color: #F55;
			font-weight: bold;
		}
	.error {
		background-color: #FF6;
		background-image: url('../images/icon_error.png');
	}
		.error a {
			color: #F60;
			font-weight: bold;
		}
	.notice p:last-child, .warning p:last-child, .error p:last-child {
		margin-bottom: 0em;
	}
	footer div.container .notice {
		margin-top: -2em;
		color: #444 !important;
	}
.box-wrapper {
	padding: 0.5em 1em;
	border-radius: 4px;
	margin-bottom: 1em;
}
	.box-wrapper.box-green {
		background-color: #D6F2D0;
	}
	.box-wrapper.box-blue {
		background-color: #DCDEFC;
	}
	.box-wrapper.box-yellow {
		background-color: #FFFBB0;
	}
	.box-wrapper.box-red {
		background-color: #FFCECE;
	}		


/* CMC Widget */
.coinmarketcap-currency-widget.right {
	float: right;
	padding: 0.5em 0 0 0.5em;
}
.coinmarketcap-currency-widget.left {
	float: left;
	padding: 0.5em 1em 0 0;
}


/* Accordion Panels */
.accordion {
	background-color: #eee;
	color: #444;
	cursor: pointer;
	padding: 18px;
	width: 100%;
	text-align: left;
	border: none;
	outline: none;
	transition: 0.4s;
}
	.accordion:after {
		content: '+'; /* Unicode character for "plus" sign (+) */
		font-size: 2em;
		font-weight: normal;
		float: right;
		margin-left: 5px;
	}
.active, .accordion:hover {
	background-color: #ccc;
}
	.active:after {
		content: "-"; /* Unicode character for "minus" sign (-) */
	}
.panel {
	padding: 0 18px;
	background-color: white;
	display: none;
	overflow: hidden;
}
	.panel hr {
		margin: 1em 0;
	}
	.panel:not([style*="display: block"]) + h3:not(.accordion), .panel:not([style*="display: block"]) + h4:not(.accordion) {
		margin-top: 2em;
	}
.button.expandall {
	margin-left: 10px;
	float: right
}



/* Custom Error Pages */
.httpError {
	background-position: center center;
	background-size: cover;
	color: #ffffff;
	padding: 14em 0em 14em;
	text-align: center;
}

	.httpError :last-child {
		margin-bottom: 0;
	}

	.httpError h2 {
		color: #ffffff;
		font-size: 4em;
		line-height: 1.25em;
		margin: 0 0 0.5em 0;
		padding: 0;
	}

	.httpError p {
		font-size: 1.5em;
		margin-bottom: 1.75em;
	}
.httpError.error401 {
	background-image: url(../images/dark_tint.png), url(../images/hissing_cat.jpg);
}
.httpError.error403 {
	background-image: url(../images/dark_tint.png), url(../images/angry_cat.jpg);
}
.httpError.error404 {
	background-image: url(../images/dark_tint.png), url(../images/falling_cat.jpg);
}
.httpError.errorTesting {
	background-image: url(../images/dark_tint.png), url(../images/wizard_cat.jpg);
}

