@charset "UTF-8";
/* CSS Document */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: #111111;
  color: #f1f1f1;
  height: 100%;
  margin: 0;
  font-family: 'Raleway', sans-serif;
}

/* unvisited link */
a:link {
  color: #00ff82;
  text-decoration: none;
  border-bottom: 2px solid #2e4eff;
}

/* visited link */
a:visited {
  color: #00ff82;
  text-decoration: none;
  border-bottom: 2px solid #2e4eff;
}

/* mouse over link */
a:hover {
  color: #ffcb3e;
  text-decoration: none;
  border-bottom: 2px solid #ff0082;
}

/* selected link */
a:active {
  color: #00ff82;
  text-decoration: none;
  border-bottom: 2px solid #2e4eff;
}

/* TOC LINKS */
a.toc:link {
  color: #ffffff;
  text-decoration: none;
  border-bottom: none;
}

a.toc:visited {
  color: #ffffff;
  text-decoration: none;
  border-bottom: none;
}

a.toc:hover {
  color: #ffffff;
  text-decoration: none;
  border-bottom: none;
}

a.toc:active {
  color: #ffffff;
  text-decoration: none;
  border-bottom: none
}

/* RUBY LINKS */
a.ruby-link:link {
  color: #ff0082;
  text-decoration: none;
  border-bottom: 2px solid #2e4eff;
}

a.ruby-link:visited {
  color: #ff0082;
  text-decoration: none;
  border-bottom: 2px solid #2e4eff;
}

a.ruby-link:hover {
  color: #ffcb3e;
  text-decoration: none;
  border-bottom: 2px solid #00ff82;
}

a.ruby-link:active {
  color: #ff0082;
  text-decoration: none;
  border-bottom: 2px solid #2e4eff;
}

/* GOLD LINKS */
a.gold-link:link {
  color: #ffcb3e;
  text-decoration: none;
  border-bottom: 2px solid #00ff82;
}

a.gold-link:visited {
  color: #ffcb3e;
  text-decoration: none;
  border-bottom: 2px solid #00ff82;
}

a.gold-link:hover {
  color: #2e4eff;
  text-decoration: none;
  border-bottom: 2px solid #ff0082;
}

a.gold-link:active {
  color: #ffcb3e;
  text-decoration: none;
  border-bottom: 2px solid #00ff82;
}

/* EMERALD LINKS */
a.emerald-link:link {
  color: #00ff82;
  text-decoration: none;
  border-bottom: 2px solid #ffcb3e;
}

a.emerald-link:visited {
  color: #00ff82;
  text-decoration: none;
  border-bottom: 2px solid #ffcb3e;
}

a.emerald-link:hover {
  color: #ff0082;
  text-decoration: none;
  border-bottom: 2px solid #2e4eff;
}

a.emerald-link:active {
  color: #00ff82;
  text-decoration: none;
  border-bottom: 2px solid #ffcb3e;
}

/* SAPPHIRE LINKS */
a.sapphire-link:link {
  color: #2e4eff;
  text-decoration: none;
  border-bottom: 2px solid #ff0082;
}

a.sapphire-link:visited {
  color: #2e4eff;
  text-decoration: none;
  border-bottom: 2px solid #ff0082;
}

a.sapphire-link:hover {
  color: #00ff82;
  text-decoration: none;
  border-bottom: 2px solid #ffcb3e;
}

a.sapphire-link:active {
  color: #2e4eff;
  text-decoration: none;
  border-bottom: 2px solid #ff0082;
}

.ruby {
  color: #ff0082;
}

.gold {
  color: #ffcb3e;
}

.emerald {
  color: #00ff82;
}

.sapphire {
  color: #2e4eff;
}

img {
  width: 100%;
  height: auto;
  border-radius: 2%;
}

.img-details {
  padding: 24px;
}

.img-details-small {
	height: 16px;
	width: auto;
}

.img-nav {
	height: 1vw;
	width: auto;
	padding-right: 20px;
}

.img-icon {
	height: 34px;
	width: auto;
	padding-left: 20px;
	vertical-align: baseline;
}

.img-footer {
	height: 2vw;
	width: auto;
	padding-right: 20px;
	vertical-align: middle;
}

.zoom {
	margin: 24px 0;
}

.static {
	margin: 24px 0;
	border: solid 1px #2e4eff;
}

.marquee {
	padding: 48px 0;
	width: 100%;
}

.marquee-stack {
	display: block;
    margin-left: auto;
    margin-right: auto;
	padding: 120px 24px 60px 24px;
	max-width: 1080px;
}

#zoom-strip {
  width: 100%;
  height: 48vw;
  border: solid 1px #2e4eff;
  background: url("../_assets/map/map-the-strip.png");
  background-position: center;
  background-size: cover;
}

#zoom-downtown {
  width: 100%;
  height: 48vw;
  border: solid 1px #2e4eff;
  background: url("../_assets/map/map-downtown.png");
  background-position: center;
  background-size: cover;
}

#zoom-local {
  width: 100%;
  height: 48vw;
  border: solid 1px #2e4eff;
  background: url("../_assets/map/map-local.png");
  background-position: center;
  background-size: cover;
}

.cover {
	height: 540px;
	margin-bottom: 36px;
}

.circle {
  border-radius: 50%;
}

.rounded {
  border-radius: 2%;
}

h1 {
  font-size: 5vw;
  letter-spacing: 4px;
  -webkit-text-fill-color: #111111;
  -webkit-text-stroke: 3px;
  word-break: break-all;
  animation: color-change 5s infinite;
}

@keyframes color-change {
  0% { color: #ff0082; }
  25% { color: #2e4eff; }
  50% { color: #00ff82; }
  75% { color: #ffcb3e; }
  100% { color: #ff0082; }
}

h2 {
  font-size: 3vw;
  letter-spacing: 3px;
  font-weight: bold;
}

h3 {
  font-size: 1.6vw;
  letter-spacing: 3px;
}

h4 {
  font-size: 14px;
  font-weight: bold;
  line-height: 28px;
  letter-spacing: 2px;
}

p {
  line-height: 28px;
}

.tag-new {
	background-color: #ffffff;
	color: #111111;
	font-weight: bold;
	letter-spacing: 3px;
	padding: 5px;
}

.tag-updated {
	border: 2px solid #ffffff;
	font-weight: bold;
	letter-spacing: 3px;
	padding: 5px;
}

.details {
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 1px;
}

.nav-title {
	font-size: 18px;
	font-weight: bold;
	letter-spacing: 2px;
}

/* buttons */
.btn {
  border: none;
  outline: none;
  color: #00ff82;
  padding: 16px;
  background-color: #111111;
  cursor: pointer;
  width: 24%;
}

.btn:hover {
  border-bottom: 2px solid #00ff82;
  color: #ffcb3e;
}

.btn.active {
  border-bottom: 2px solid #2e4eff;
  color: #ff0082;
  padding: 16px;
}

.btn-wide {
  border: none;
  outline: none;
  color: #00ff82;
  padding: 24px;
  background-color: #111111;
  cursor: default;
  width: 49%;
  text-align: right;
}

.btn-wide:hover {
  color: #ff0082;
}

.btn-wide.active {
  color: #ff0082;
  text-align: left;
}

/* Center website */
.main {
  width: 100%;
  margin: 0;
  padding: 48px;
}

.container {
  position: relative;
  text-align: center;
  color: #111111;
}

.content {
  padding: 48px 0;
  margin: auto;
}

.bottom-left {
  position: absolute;
  bottom: 16px;
  left: 16px;
}

.top-left {
  position: absolute;
  top: 16px;
  left: 16px;
}

.top-right {
  position: absolute;
  top: 16px;
  right: 16px;
}

.bottom-right {
  position: absolute;
  bottom: 16px;
  right: 16px;
}

.centered {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* FRAMES */

.mini-logo {
  width: 66%;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
  margin-top: 40px;
}

.mini-map {
  max-width: 560px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 80px;
  margin-top: 80px;
}

.top-nav-bar-main {
  width: 100%;
  padding: 10px 20px 10px 20px;
  border-bottom: 2px #2e4eff solid;
  position: fixed;
  z-index: 1;
  background-color: #111111;
  text-align: center;
}

.top-nav-bar-ruby {
  width: 100%;
  padding: 10px 20px 10px 20px;
  border-bottom: 2px #ff0082 solid;
  position: fixed;
  z-index: 1;
  background-color: #111111;
}

.top-nav-bar-gold {
  width: 100%;
  padding: 10px 20px 10px 20px;
  border-bottom: 2px #ffcb3e solid;
  position: fixed;
  z-index: 1;
  background-color: #111111;
}

.top-nav-bar-emerald {
  width: 100%;
  padding: 10px 20px 10px 20px;
  border-bottom: 2px #00ff82 solid;
  position: fixed;
  z-index: 1;
  background-color: #111111;
}

.top-nav-bar-sapphire {
  width: 100%;
  padding: 10px 20px 10px 20px;
  border-bottom: 2px #2e4eff solid;
  position: fixed;
  z-index: 1;
  background-color: #111111;
}

.left-frame {
  margin: 0;
  padding: 100px 3% 20px 3%;
  width: 40%;
  background-color: #111111;
  position: fixed;
  height: 100%;
  overflow: auto;
}

.right-frame {
  margin-left: 40%;
  padding: 60px 3% 20px 3%;
  height: 100%;
  background-color: #111111;
}

.inner-wrapper {
  padding: 20px 40px;
}

.copy-block {
  max-width: 540px;
}

.copy-right {
	max-width: 360px;
	display: block;
	float: left;
}

.intro {
	margin-right: 25%;
}

.intro-columns {
	margin-right: 6vw; 
	margin-top: 3vw
}
 

/* TABLES */
table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
  border: 0;
}

.table-details {
  width: 100%;
  margin-bottom: 36px;
}

th {
  text-align: left;
  padding: 16px;
}

td {
  text-align: left;
  padding: 16px;
}

tr.ruby-row {border-bottom: solid 1px #ff0082;}
tr.gold-row {border-bottom: solid 1px #ffcb3e;}
tr.emerald-row {border-bottom: solid 1px #00ff82;}
tr.sapphire-row {border-bottom: solid 1px #2e4eff;}
tr.blank-row {border-bottom: none;}

/* RULES */
hr.sapphire-rule {
  border: 1px solid #2e4eff; 
}

hr.emerald-rule {
  border: 1px solid #00ff82;
}

hr.ruby-rule {
  border: 1px solid #ff0082;
}

hr.gold-rule {
  border: 1px solid #ffcb3e;
}

hr.animate {
	border: 2px solid;
	animation: color-change 5s infinite;
}

.header {
  text-align: left;
  padding: 32px 0;
}

footer {
  text-align: left;
  padding: 24px 0 16px 0;
  font-size: 12px;
}

.footer-copy-left {
	max-width: 360px;
	display: inline-block;
	float: left;
}

.footer-copy-right {
	max-width: 360px;
	display: inline-block;
	float: right;
}

.child {
  position: absolute;
  top: -2px; 
  left: 4px;
  font-weight: bold;
  letter-spacing: 4px;
}

.row {
  display: -ms-flexbox; /* IE10 */
  display: flex;
  -ms-flex-wrap: wrap; /* IE10 */
  flex-wrap: wrap;
  padding: 0 8px;
  margin: 10px -16px;
}

/* Add padding BETWEEN each column */
.row,
.row > .column {
  padding: 8px;
}

/* Create three equal columns that floats next to each other */
.column {
  float: left;
  width: 33.33%;
  max-width: 360px;
  display: none; /* Hide all elements by default */
}

.column-half {
	float: left;
	width: 50%;
	display: block;
}

.column-quarter {
	float: left;
	width: 25%;
	display: block;
}

.column-related {
  float: left;
  width: 33.33%;
  max-width: 360px;
  padding: 16px;
}

/* full width text column */
.column-full-text {
  float: left;
  width: 100%;
  position: relative;
}

/* large column */
.column-large {
  float: left;
  width: 100%;
  padding-right: 16px;
  position: relative;
}

/* small column */
.column-small {
  float: left;
  width: 33.33%;
  padding-left: 48px;
  position: relative;
}

/* Clear floats after rows */ 
.row:after {
  content: "";
  display: table;
  clear: both;
}

.group:after {
	content: "";
	display: table;
	clear: both;
}

.overlay-ruby {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  transition: .1s ease;
  background-color: #ff0082;
  mix-blend-mode: color;
  border: 8px solid #00ff82;
}

.container:hover .overlay-ruby {
  opacity: 1;
}

.overlay-sapphire {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  transition: .1s ease;
  background-color: #2e4eff;
  mix-blend-mode: color;
  border: 8px solid #ffcb3e;
}

.container:hover .overlay-sapphire {
  opacity: 1;
}

.overlay-emerald {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  transition: .1s ease;
  background-color: #00ff82;
  mix-blend-mode: color;
  border: 8px solid #2e4eff;
}

.container:hover .overlay-emerald {
  opacity: 1;
}

.overlay-gold {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  transition: .1s ease;
  background-color: #ffcb3e;
  mix-blend-mode: color;
  border: 8px solid #ff0082;
}

.container:hover .overlay-gold {
  opacity: 1;
}

/* The "show" class is added to the filtered elements */
.show {
  display: block;
}

/* Responsive layout - makes the three columns stack on top of each other instead of next to each other */
@media screen and (max-width: 800px) {
  
  .main {
	padding: 10px 20px;
  }
	h1 {
	font-size: 48px;
	}
  h2 {		
	font-size: 30px;
  }
  h3 {
    font-size: 12px;
	letter-spacing: 1px;
  }
	.tag-new {
		font-size: 10px;
		line-height: 10px;
	}
	.tag-updated {
		font-size: 10px;
		line-height: 10px;
	}
	.nav-title {
		font-size: 12px;
	}
	.child {
		top: -12px;
	}
  .column-large, .column.-small {
    width: 100%;
  }
	.img-icon {
		height: 18px;
	}
	.img-nav {
		display: none;
	}
	.img-footer {
		display: none;
	}
	.inner-wrapper {
  	padding: 10px 20px;
	}
	.intro {
		margin-right: 0;
	}
	.intro-columns {
		margin-right: 60px; 
		margin-top: 3vw;
	}
}

@media screen and (max-width: 1080px) {
  .main {
	padding: 10px 20px;
  }
  .img-details {
  width: 50%;
  float: left;
  }
  .table-details {
  float: left;
  }
  .column-large {
    width: 100%;
    padding-right: 0;
  }
  .column-small {
    width: 100%;
    padding-left: 0;
  }
  .column-related {
	padding: 4px;
  }
  .zoom {
	display: none;
  }
  .cover {
	height: 360px;
  }
  .left-frame {
    width: 100%;
    height: auto;
    position: relative;
  }
  .right-frame {
	margin-left: 0;
	width: 100%;
  }
  .row,
.row > .column {
  padding: 4px;
}
	
}

@media screen and (min-width: 1080px) {
	.static {
		display: none;
	}
}


