/* ------------------------------------------------
-- Styles TradingView - Tickers ---
-- Version: 2017-11-05
--------------------------------------------------- */

body, html {
	margin: 0;
	padding: 5px;
  width: 100%;
	height: 100%;
 	min-height: 100%;
	font: 400 16px/1.5 "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

h3 {
	color: #333;
	margin: 5px;
	padding: 0;
	text-align: center;
	text-transform: uppercase;
}

.debug {
	color: #c33;
	font-size: 12px;
	font-weight: normal;
}

.box {
	position: relative;
	box-sizing: border-box;
	float: left;
	width: 50%;
	height: calc(50% - 18px);
}


.top-button-container {
	position: absolute;
	top: 5px;
	right: 45px;
	z-index: 10000;
}

.button {
	display: block;
	cursor: default;
	padding: 7px 12px;
	border: 1px solid #dadde0;
	background: #fff;
	height: 14px;
	color: #555;
	font-size: 11px;
	font-weight: 600;
}

.button.toggled {
	border: 3px solid #3bb3e4;
}


#inner1 {
	height: 100%;
}
#inner2 {
	height: 100%;
}
#inner3 {
	height: 100%;
}
#inner4 {
	height: 100%;
}


.topnav {
	overflow: hidden;
	background-color: #333;
}
.topnav a {
	float: left;
	display: block;
	text-align: center;
	padding: 1px 40px;
	text-decoration: none;
	font-size: 14px;
}
.topnav a:hover {
	background-color: #ddd;
	color: black;
}
.topnav .icon {
	display: none;
}

@media screen and (max-width: 600px) {
	.topnav.responsive {
		position: relative;
	}
	.topnav.responsive .icon {
		position: absolute;
		right: 0;
		top: 0;
	}
	.topnav.responsive a {
		float: none;
		display: block;
		text-align: left;
	}
}

a {
	color: inherit;
}

.container {
	display: table;
	width: 100vw;
	height: 100%;
}
.interior {
	display: table-cell;
	vertical-align: middle;
	text-align: center;
}
.interior a {
	margin: 12px 8px 6px 8px;
}
.btn {
	background-color: #fff;
	color: #000!important;
	padding: 1em 3em;
	border-radius: 3px;
	text-decoration: none;
}



/* --- modal - window -- */
.modal-window {
	position: fixed;
	background-color: #333;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	overflow-x: scroll;
	z-index: 999999;
	opacity: 0;
	pointer-events: none;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s;
}
.modal-window:target {
	opacity: 1;
	pointer-events: auto;
}
.modal-window>div {
	max-width: 80vw;
	position: relative;
	margin: 10% auto;
	padding: 2rem;
	color: #777;
}
.modal-window header {
	font-weight: bold;
}
.modal-window h1 {
	font-size: 26px;
	margin: 0;
}
.modal-window h6 {
	font-size: 14px;
	word-break: break-all;
	margin: 0 0 4px 0;
}
.modal-close {
	color: white;
	!important;
	line-height: 50px;
	font-size: 80%;
	position: absolute;
	right: 0;
	text-align: center;
	top: 0;
	width: 70px;
	text-decoration: none;
}
.modal-close:hover {
	color: #aaa;
}

