/* CSS rules for bike-ped count app */

* {
	font-family:"Trebuchet MS","sans-serif";
}

/* Rules for CTPS"branding" */
#banner{
	position:relative;
	height:100%;
	left:2%;
	top:-43px;
	z-index:15;
	border: none;
}
.pagetitle{
    font-size: 17px;
}
.ctpsHeader{
	height:59px;
	width: 100%;
	background-color:white
}

.lightBlue{
	height:27px;
	width:100%;
	background-color:#7DA1C4;
	z-index:10;
}

.darkBlue{
	height:16px;
	width:100%;
	background-color:rgb(13,72,127);
	z-index:10;
}
/* End of rules for CTPS "branding" */


/* The following rule is used only in the 'main' page */
.container {
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	align-items: center;
}

/* The following rule is used only in the 'detail' page */
.container_top {
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	align-items: center;
}

#controls {
	margin-bottom: 10px;
}

#map { 
	height: 550px; 
	width:  80%;
	border: 4px solid #B87F32;
	margin-bottom: 10px;
}

#output_table {
	/* NOTE: this is actually set in the configuration options for the jsGrid object. */
	/* width: 80%;*/ 
}

/* The following 2 rules are used only in the 'detail' page */
.container_bottom {
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	align-items: right;
}
/* Rule for the <div> into which the data viz'es will be placed */
#report_div {
	width: 100%;
}


/* Hide OpenLayers Attribution on map */
.ol-attribution { display: none; }

/* Rules for OpenLayers map popup */
.ol-popup {
        position: absolute;
        background-color: white;
        box-shadow: 0 1px 4px rgba(0,0,0,0.2);
        padding: 15px;
        border-radius: 10px;
        border: 1px solid #cccccc;
        bottom: 12px;
        left: -50px;
        min-width: 280px;
}
.ol-popup:after, .ol-popup:before {
        top: 100%;
        border: solid transparent;
        content: " ";
        height: 0;
        width: 0;
        position: absolute;
        pointer-events: none;
}
.ol-popup:after {
        border-top-color: white;
        border-width: 10px;
        left: 48px;
        margin-left: -10px;
}
.ol-popup:before {
        border-top-color: #cccccc;
        border-width: 11px;
        left: 48px;
        margin-left: -11px;
}
.ol-popup-closer {
        text-decoration: none;
        position: absolute;
        top: 2px;
        right: 8px;
}
.ol-popup-closer:after {
        content: "✖";
}

/* CSS class for anchor tags not to be styled, e.g., 
   the <a> tag embedded in 'Download all data' button  */
a.nostyle:link {
    text-decoration: inherit;
    color: inherit;
    cursor: auto;
}
a.nostyle:visited {
    text-decoration: inherit;
    color: inherit;
    cursor: auto;
}