/* Core Stuff */
* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

body {
    font-size: 1rem;
    line-height: 1.7;
    color: #606d6e;
	/* height:100vh; */
	height:auto;
	width:100vw;
}

h1,
h2,
h3,  
h4,
h5,
h6 {
    color: #454B4D;
}

a {
    color: #1F8CD6;
    text-decoration: none;
}

a:hover {
    color: #175E91;
}

pre {
    background: #F0F0F0;
    margin: 1rem 0;
    border-radius: 2px;
}

blockquote {
    border-left: 10px solid #eee;
    margin: 0;
    padding: 0 2rem;
}

/* Utility Classes */
.wrapper {
    margin: 0 3rem;
}

.padding {
    padding: 3rem 1rem;
}

.float-left {
    float: left;
}

.float-right {
    float: right
}

.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

.text-left {
    text-align: left;
}

/* Content Styling */
/*.header .padding {
    padding: 1rem 0;
}

.header {
    background-color: #1F8DD6;
    color: #eee;
}

.header a {
    color: #fff;
}

.header .logo {
    font-size: 1.7rem;
    text-transform: uppercase;
}

.footer {
    background-color: #eee;
}*/

/* Menu Settings */
.main-nav ul {
    text-align: center;
    letter-spacing: -1em;
    margin: 0;
    padding: 0;
}

.main-nav ul li {
    display: inline-block;
    letter-spacing: normal;
}

.main-nav ul li a {
    position: relative;
    display: block;
    line-height: 45px;
    color: #fff;
    padding: 0 20px;
    white-space: nowrap;
}

.main-nav > ul > li > a {
    border-radius: 2px;
}

/*Active dropdown nav item */
.main-nav ul li:hover > a {
    background-color: #175E91;
}

/* Selected Dropdown nav item */
.main-nav ul li.selected > a {
    background-color: #fff;
    color: #175E91;
}
#searchbox + i {
	cursor: pointer;
	z-index:150; 
}
#start-result-scroller, #end-result-scroller,#info-loc-scroller {
	position:relative;
	max-height:25%;
	overflow:hidden;
	border: thin solid rgba(0,0,0,0.25);
}
.result-list {
	position:relative;
	margin-bottom:0;
}
#start-results,#end-results {
	display:none;
	max-height:25%;
	/*border: thin solid rgba(0,0,0,0.25);
	margin:0.5em;
	background-color:white;*/
}
.result-list .content .header {
	background: transparent;
	
}
.result-list .content .description {
	font-size: 0.9rem;
	
}
/* Dropdown CSS */
.main-nav ul li {position: relative;}

.main-nav ul li ul {
    position: absolute;
    background-color: #1F8DD6;
    min-width: 100%;
    text-align: left;
    z-index: 999;

    display: none;
}
.main-nav ul li ul li {
    display: block;
}

/* Dropdown CSS */
.main-nav ul li ul ul {
    left: 100%;
    top: 0;
}

/* Active on Hover */
.main-nav li:hover > ul {
    display: block;
}

/* Child Indicator */
.main-nav .has-children > a {
    padding-right: 30px;
}
.main-nav .has-children > a:after {
    font-family: FontAwesome;
    content: '\f107';
    position: absolute;
    display: inline-block;
    right: 8px;
    top: 0;
}

.main-nav .has-children .has-children > a:after {
    content: '\f105';
}
#body {
	height:100%;
}
#building {
	position:absolute;
	top:0;
	left:0;
	z-index:1000;
	height:100%;
	width:100%;
	display:none;
	background-color: rgba(48,48,48,0.76);
}
#building_map {

}
#building_scroller {
	position:relative;
	height:100%;
	width:100%;
}
#building_close {
	color:white;
	position:absolute;
	right:1rem;
	top:1rem;
	cursor: pointer;
	height:2rem;
	width:2rem;
	z-index:1000;
}

/* SpinKit SK Cube Grid */
.sk-cube-grid {
  width: 40px;
  height: 40px;
  margin: calc(25% - 20px) auto;
}

.sk-cube-grid .sk-cube {
  width: 33%;
  height: 33%;
  background-color: #fff;
  float: left;
  -webkit-animation: sk-cubeGridScaleDelay 1.3s infinite ease-in-out;
          animation: sk-cubeGridScaleDelay 1.3s infinite ease-in-out; 
}
.sk-cube-grid .sk-cube1 {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s; }
.sk-cube-grid .sk-cube2 {
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s; }
.sk-cube-grid .sk-cube3 {
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s; }
.sk-cube-grid .sk-cube4 {
  -webkit-animation-delay: 0.1s;
          animation-delay: 0.1s; }
.sk-cube-grid .sk-cube5 {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s; }
.sk-cube-grid .sk-cube6 {
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s; }
.sk-cube-grid .sk-cube7 {
  -webkit-animation-delay: 0s;
          animation-delay: 0s; }
.sk-cube-grid .sk-cube8 {
  -webkit-animation-delay: 0.1s;
          animation-delay: 0.1s; }
.sk-cube-grid .sk-cube9 {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s; }

@-webkit-keyframes sk-cubeGridScaleDelay {
  0%, 70%, 100% {
    -webkit-transform: scale3D(1, 1, 1);
            transform: scale3D(1, 1, 1);
  } 35% {
    -webkit-transform: scale3D(0, 0, 1);
            transform: scale3D(0, 0, 1); 
  }
}

@keyframes sk-cubeGridScaleDelay {
  0%, 70%, 100% {
    -webkit-transform: scale3D(1, 1, 1);
            transform: scale3D(1, 1, 1);
  } 35% {
    -webkit-transform: scale3D(0, 0, 1);
            transform: scale3D(0, 0, 1);
  } 
}

/* Leaflet-Panel-Layers */
.leaflet-panel-layers-title span {
	padding: 0 0.5em 0 0.75em;
}
/* sidebar */
.ui.sidebar {
	background-color:white;
	padding:0 0 0.75rem;
} 
.ui.sidebar .ui.tabular.menu {
	border-bottom:none;
}
#accessible.active {
	background-color:#155196 !important;
}
i.inverted.bordered.wc-blue.icon, i.inverted.circular.wc-blue.icon {
	background-color:#155196 !important;
	color:white;
}
.wheelchair-holder i {
	/* font-size: 1.2em; */
}
.wheelchair.active,.wheelchair-holder.active.item, .wheelchair-holder.active.item  i,  .wheelchair-holder.active i {
	background-color:#155196 !important;
	color:white;
}
.legend-icon {
	height: 2rem;
	width: 2rem;
	line-height:2rem;
	vertical-align:middle;
	text-align:center;
	border-radius: 0.5rem;
}
.ui.contracted.segment {
	padding:0;
}
.ui.top.contracted.segment {
	padding:0 1em;
}
.ui.top.left.contracted.segment {
	padding:0 1em 0 0;
	float:none;
}
/*
i.average.icon, i.average.icons {
	line-height: 1;
	vertical-align: middle;
	 font-size: 1.15em;
	
}*/
i.icon, i.icons {
	font-size:1.15em;
	max-width: 42.5px;
	
}
#search-holder {
	display:none;
	padding:0.5em;
}
/*.ui.even.icon.menu .icon.item {
	width: 3rem;
}*/
#search-holder .sidebar-toggle i.circle.outline {
	/*font-size: 0.8em;*/
	font-weight:bold;
}
#dest-search-holder {
	
	padding:0.5em;
}
.tab-icon {
	border-radius: 50%;
    height: 2.25em;
    width: 2.25em;
    line-height: 2.25em;
	font-size:1em;
	margin-bottom:0.5em;
}
.tab-list {
	margin-right:0.5em;
}
#building-tabs {
	position:relative;
}
.text-scroll {
	margin-bottom:0;
	position:relative;
	/*max-height:25%;*/
	overflow:hidden;
	border: none;
}
.textlist {
	position:relative;
}
.textlist .item.tab-list:first-child{
	padding-top:0.5em;
}
.textlist .item.tab-list:last-child{
	padding-bottom:0.5em;
}
.text-tab-content.ui.segment,.bldg-tab-content.ui.segment {
	padding:0.5em;
	margin-bottom:0;
}
.text-tab-content.ui.attached.segment {
	position:relative;
}
.infoslides {
	height:auto;
}
.infoslides img {
	margin:auto;
	
}
.text-holder {
	/*padding-bottom:1rem;*/
	margin-bottom:0.5rem;
}
#text-tabs {
	max-height:calc(30vh - 1em);
	position:relative;
	overflow:hidden;
}
.text-tab-content {
	position:relative;
}
#text-tabs .content {
	
}
#text-tabs > .content {
	padding:0 0.5em;
	margin-bottom: 0;
	border-top: 1px solid rgba(34, 36, 38, 0.15)
}
#text-tabs .title {
	padding:0.5em 1em;
}
#text-directions {
	position:relative;
	display:none;
	max-height:30vh;
	overflow:hidden;
	padding:0 0 1rem 0 ;
}
#info-loc-display {
	position:relative;
	display:none;
	max-height:30vh;
	overflow:hidden;
	padding:0 0 1rem 0 ;
}
#site-loader {
	position:absolute;
	top:0;
	left: 0;
	height: 100vh;
	width: 100vw;
	margin:0
	
}
.ui.section.divider {
	margin:0.5rem;
}
#submenu.ui.menu {
	margin-bottom: 0;
}
#qrcode {
	height: 300px;
	width: 300px;
}
.search-toggle.vertically.fitted.icon.right.item, #share-menu.vertically.fitted.icon.right.item {
	margin-left:0!important;
}
.ui.menu .item.input-box {
	flex: 1 1 auto;
}
.ui.menu .header.item, .ui.vertical.menu .header.item {
	padding-left:0.5em;
	padding-right:0.5em;
}
#search-control .ui.segment {
	padding:0.5em;
}
.searchval .ui.list > .item .header {
	overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.ui.horizontal.segments > .segment {
	-ms-flex: 1 1 auto;
}
#confirmation .ui.fluid[class*="right labeled"].icon.button {
    padding-left: 0.75rem !important;
    padding-right: 3.75rem !important;
}