html {
	height: 100%;
	font-size: 12px;
	font-family: "Trebuchet MS", Helvetica, sans-serif;
	color: #638795;
}

body {
	height: 100%; 
	overflow: hidden;
}

h1 {
	/*color: #053b50;*/
	font-size: 4rem;
	font-weight: bold;
	text-transform: uppercase;
}

h2 {
	color: #1f586d;
	font-size: 2rem;
	text-transform: uppercase;
	font-weight: bold;

}

h3 {
	color: #1f586d;
	font-size: 1.2rem;
	text-transform: uppercase;
	font-weight: bold;
}

h5 {
	color: #cccccc;
	font-size: 0.8rem;
}

p {
	
}

em {
	font-weight: bold;
}

#test {
	display: none;
}

a {
	font-style: oblique;
	color: #00aeef;
	/*text-decoration: underline;*/
}

.vertically-centered-wrapper {
	display: table;
	width: 100%;
	height: 100%;
}

.vertically-centered {
	display: table-cell;
	vertical-align: middle;
	text-align: center;
	width: 100%;
	height: 100%;
}

#tooltip {
	z-index: 200;
	position: absolute;
	padding: 0.5rem;
	width: auto;
	max-width: 25rem;
	background-color: #ffffff;
	border: 0.2rem solid #eeeeee;
	visibility: hidden;
	top: 0px;
}

#tooltip.active {
	visibility: visible;
}

#tooltip p {
	display: block;
	font-size: 0.8rem;
}

.arrow {
	cursor: pointer;
}

.table {
	display: table;
	width: 100%;
	height: 100%;
}

.table-row {
	display: table-row;
	width: 100%;
}

.table-cell {
	
}
#mother {
	/*position: relative;*/
	height: 100%;
	width: 100%;
	max-width: 100%;
}

#head {
}

#title {
	width: 100%;
}

/*#title.active {
	background-color: #ff0000;
}

#title.blue {
	background-color: #0000ff;
}*/

#body {
	height: 100%;
}

#sidebar {
	display: inline-block;
	width: calc(40px + 2rem);
	height: 100%;
	background-color: #053b50;
	vertical-align: top;
}

#main {
	display: inline-block;
	height: 100%;
	width: calc(100% - 2rem - 50px);
	vertical-align: top;
}

#map-container {
	position: relative;
	width: 100%;
	height: calc(100% - 3.5rem);
	background-color: #eeeeee;
}

.campus-map {

	position: absolute;
	width: 100%;
	height: 100%;
	/*display: none;*/
	visibility: hidden;
}

.campus-map.active {
	/*display: block;*/
	visibility: visible;
}

#campus-container, #popup-tab-container {
	position: relative;
	width: 100%;
	max-width: 100%;
	height: 3.5rem;
	
}

/*#campus-container {
	width: calc(100% - 1rem);
	margin: 0 0.5rem;
}*/

.inner {
	display: block;
	margin: 1rem;
	height: calc(100% - 2rem);
}
.inner-2 {
	display: block;
	margin: 0.5rem;
	height: calc(100% - 1rem);
}

#sidebar .icon-container {
	width: 100%;
	margin-bottom: 1rem;
}

#sidebar .icon-container img {
	max-width: 100%;
	max-height: 100%;
}

#campus-container .arrow, #popup-tab-container .arrow {
	display: none;
	width: 2rem;
	/*position: absolute;*/
	height: calc(100% - 0.5rem);
}

#campus-container .arrow.active, #popup-tab-container .arrow.active {
	display: table;
}

#campus-container .right-arrow, #popup-tab-container .right-arrow {
	float: right;
}

#campus-container .left-arrow, #popup-tab-container .left-arrow {
	float: left;
}

#campus-list-container, 
#popup-tab-list-container {
	position: relative;
	float: left;
	width: 100%;
	height: 100%;
	overflow-x: hidden;
	overflow-y: hidden;
}

#campus-list, #popup-tab-list {
	/*cursor: ew-resize;*/
	display: block;
	position: absolute;
	margin: 0 auto;
	height: 100%;
	width: auto;
	left: 0px;
	white-space: nowrap;
}

#campus-list .campus-outer, 
#popup-tab-list .tab-outer {
	display: inline-block;
	width: 8rem;
	height: calc(100% - 0.5rem);
	margin: 0 0.5rem 0.5rem 0;
	background-color: #ddd;
	vertical-align: top;
	cursor: pointer;
}

#campus-list .campus-outer:hover,
#popup-tab-list .tab-outer:hover {
	background-color: #ccc;
}

#popup-tab-list .tab-outer {
	width: 7rem;
}

#campus-list .campus-outer:last-child, #popup-tab-list .tab-outer:last-child{
	margin: 0 0 0.5rem 0;
}

#campus-list .campus-outer p, 
#popup-tab-list .tab-outer p {
	margin: 0.5rem;
	white-space: normal;
}

#campus-list .campus-outer.active, 
#popup-tab-list .tab-outer.active {
	background-color: #00aeef;
}

#campus-list .campus-outer.active p, 
#popup-tab-list .tab-outer.active p {
	color: white;
}

#building-selection-dropdown {
	position: absolute;
	left: 1rem;
	top: 1rem;
}

svg .building-selector {

	/*fill: rgba(1,1,1,1);*/
	stroke: #053b50;
	stroke-width: 0%;
}

svg .building-selector:hover {
	stroke-width: 0.5%;
}






#overlay {
	z-index: 2;
	visibility: hidden;
	position: absolute;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0,174,239,0);
	-webkit-transition: background-color 0.5s; /* Safari */
    transition: background-color 0.5s;
}

#overlay.active {
	visibility: visible;
	background-color: rgba(0,174,239,0.5);
	
}

#popup {
	position: relative;
	width: calc(80%-2rem);
	max-width: 700px;
	max-height: 100%;
	margin: 100% auto 0 auto;
	padding: 1rem;
	background-color: #ffffff;
	text-align: left;
	-webkit-transition: margin 0.5s; /* Safari */
    transition: margin 0.5s;
}

#overlay.active #popup {
	margin: 0 auto 0 auto;
}

#popup-title {
	margin-bottom: 1rem;
	width: calc(100% - 2rem);
}

#popup-close {
	position: absolute;
	top: 1rem;
	right: 1rem;
	cursor: pointer;
	background: none;
	border: 0;
	font-size: 20px;
	font-weight: bold;
}

#popup-tab-container {
	/*margin-bottom: 0.5rem;*/
}

#popup-vis-container {
	position: relative;
	width: 100%;
	background-color: #ffffff;
}

.vis {
	display: none;
}

.vis.active {
	display: block;
}

.vis canvas, #sphere-info, .vis div.error, .vis video, .vis svg, .vis div.content {
	position: absolute;
	display: none;
	width: 100%;
	height: 100%;
}

.vis canvas.active, #sphere-info.active, .vis div.error.active, .vis video.active, .vis svg.active, .vis div.content.active {
	display: block;
}

#sphere-info {
	position: absolute;
	top: 0;
	text-align: right;
	width: calc(100% - 2rem);
	padding: 1rem;
	height: auto;
}

#sphere-info p {
	font-size: 1.5rem;
}


.vis:after {
  padding-top: 56.25%;
  display: block;
  content: '';
}


#info-container {
	position: absolute;
	width: 30%;
	top: 0;
	bottom: calc(100% - 2rem);
	-webkit-transition: bottom 0.5s; /* Safari */
    transition: bottom 0.5s;
    overflow: hidden;
}

#info-container.active {
	bottom: 0;
}

#info-container.disappear{
	display: none;
}

#info-controls {
	padding: 0.5rem;
	background-color: #638795;
	color: white;
}

#info-controls p {
	text-align: center;
	color: inherit;
}

#info-container #info-show {
	display: block;
}

#info-container.active #info-show {
	display: none;
}

#info-container #info-hide {
	display: none;
}

#info-container.active #info-hide {
	display: block;
}

#info-container #info {
	position: absolute;
	padding: 0.5rem;
	width: calc(100% - 1rem);
	background-color: #ffffff;
	top: 2rem;
	bottom: 0;
	overflow-y: scroll;
}

.info-content {
	display: none;
}

.info-content.active {
	display: block;
}

#info p, #info h3, #info h5 {
	margin-bottom: 0.5rem;
}

#info h3, #info h5 {
	margin-top: 1rem;
}

#info > p {
	margin-top: 1rem;
	margin-bottom: 0.5rem;
}

#share-link {
	color: #CCCCCC;
	width: calc(100% - 2rem);
	border: 1px solid #eeeeee;
	padding: 0.5rem;
}
/*
#info-container.active #info {
	bottom: 0%;
}*/

svg .slider {
	cursor: grab;
}

svg .slider:active {
	cursor: grabbing;
}

svg .handle {
	cursor: ew-resize;
	/*visibility: hidden;*/
}

#loading {
	font-size: 2rem;
	text-transform: uppercase;
}






.dropdown-wrapper {

	z-index: 1;
	float: left;
    width: 160px;
    padding: 5px;
    margin: 0 0 0 0;
	position: relative;
    background-color: #638795; /*#053b50*/
    color: #fff;
    outline: none;
    cursor: pointer;
}

.dropdown-wrapper span {
}

.dropdown-wrapper:after {
    content: "";
    width: 0;
    height: 0;
    position: absolute;
    right: 6px;
    top: 50%;
    margin-top: -6px;
    border-width: 6px 0 6px 6px;
    border-style: solid;
    border-color: transparent #fff;    
}

.dropdown-wrapper .dropdown {
	border-radius: 0 0 5px 5px;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0; 
	padding: 0;
	margin: 0;
   text-transform: none;
    background: #fff;
    font-weight: normal;
    opacity: 0;
    pointer-events: none;
    max-height: 20rem;
    overflow-y: scroll;
}

.dropdown-wrapper .dropdown li {
    display: block;
    text-decoration: none;
    color: #638795;
    background-color: #ffffff;
    padding: 5px 5px 5px 5px;
}


.dropdown-wrapper .dropdown li:hover {
    background: #dddddd;
}

.dropdown-wrapper.active .dropdown.active {
    opacity: 1;
    pointer-events: auto;
}

.dropdown-wrapper.active:after {
    border-color: #fff transparent;
    border-width: 6px 6px 0 6px ;
    margin-top: -3px;
}




