/**
 * Body CSS
 */

html,
body {
  height: 100%;
  background-color: #eee;
}

html,
body,
input,
textarea,
buttons {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.004);
}


/**
 * Layout CSS
 */

#header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 2;
  transition: left 0.2s;
}

#sidedrawer {
  position: fixed;
  top: 0;
  bottom: 0;
  width: 200px;
  left: -200px;
  overflow: auto;
  z-index: 2;
  background-color: #fff;
  transition: transform 0.2s;
}

#content-wrapper {
  min-height: 100%;
  overflow-x: hidden;
  margin-left: 0px;
  transition: margin-left 0.2s;
  
  /* sticky bottom */
  margin-bottom: -160px;
  padding-bottom: 160px;
}

#footer {
  height: 160px;
  margin-left: 0px;
  transition: margin-left 0.2s;
}

@media (min-width: 768px) {
  #header {
    left: 200px;
  }
  
  #sidedrawer {
    transform: translate(200px);
  }
  
  #content-wrapper {
    margin-left: 200px;
  }
  
  #footer {
    margin-left: 200px;
  }
  
  body.hide-sidedrawer #header {
    left: 0;
  }
  
  body.hide-sidedrawer #sidedrawer {
    transform: translate(0px);
  }
  
  body.hide-sidedrawer #content-wrapper {
    margin-left: 0;
  }
  
  body.hide-sidedrawer #footer {
    margin-left: 0;
  }
}


/**
 * Toggle Sidedrawer
 */
#sidedrawer.active {
  transform: translate(200px);
}


/**
 * Header CSS
 */

.sidedrawer-toggle {
  color: #fff;
  cursor: pointer;
  font-size: 20px;
  line-height: 20px;
  margin-right: 10px;
}

.sidedrawer-toggle:hover {
  color: #fff;
  text-decoration: none;
}


/**
 * Sidedrawer CSS
 */

#sidedrawer-brand {
  padding-left: 20px;
  font-size: 20px;
  font-weight: 400;
}

#sidedrawer ul {
  list-style: none;
  /*background-color: blue;*/
}

#sidedrawer > ul {
  padding-left: 0px;
}

#sidedrawer > ul > li:first-child {
  padding-top: 15px;
}

#sidedrawer strong {
  display: block;
  padding: 15px 22px;
  cursor: pointer;
}

#sidedrawer strong:hover {
  background-color: #E0E0E0;
}

#sidedrawer strong + ul > li {
  padding: 6px 0px;
}


/**
 * Footer CSS
 */

#footer {
  background-color: #0288D1;
  color: #fff;
}

#footer a {
  color: #fff;
  text-decoration: underline;
}

#banner {
  padding-top: 50px;
  width: 100%;
}

#summary.mui-container-fluid {
  width: 90%;
}

#beforesummary.mui--appbar-height {
  height: 1px;
}

.intro {
  font-size: 125%;
}
#maincontainer {
  width:100%;
}

#flyway {
  width: 100%;
 
}

.blurbs {
    
    float: left;
    font-size:110%;
}

#weatherbox {
  background-color: #bed897;
  padding-bottom: 15px;
  border-radius: 5px;
}


a {
    color: #2196F3;
}

.highlight {
    color: #2196F3;
    font-weight: bold;
}

#map-canvas {
        height: 300px;

}
 
/*Google Search Styling from  https://jsfiddle.net/yy1chuxw/ */

.gsc-control-cse {
  margin-left: 10px;
}

input#gsc-i-id1.gsc-input {
  font-size: 12px;
}

@media only screen and (max-width: 399px)  {
#___gcse_0 .cse .gsc-control-cse,
#___gcse_0 .gsc-control-cse {
    /*background-color: rgba(0, 0, 255, 0.5) !important;*/
    width: 310px !important;
    /*padding-right: 50px;*/
    padding-left: 40px;
    float:left;
}
}

@media only screen and (min-width: 400px)  {
#___gcse_0 .cse .gsc-control-cse,
#___gcse_0 .gsc-control-cse {
    /*background-color: rgba(0, 0, 255, 0.5) !important;*/
    width: 400px !important;
    /*padding-right: 50px;
    padding-left: 15px;*/
    float:left;
}
}


.gsc-orderby {
    display: none;
}

      /* white background and box outline */
.gm-style > div:first-child > div + div > div:last-child > div > div:first-child > div {
    /* we have to use !important because we are overwritng inline styles */
    background-color: transparent !important;
    box-shadow: none !important;
    width: auto !important;
    height: auto !important;
}

/* arrow colour */
.gm-style > div:first-child > div + div > div:last-child > div > div:first-child > div > div > div {
    background-color: #003366 !important; 
}

/* close button */
.gm-style > div:first-child > div + div > div:last-child > div > div:last-child {
    margin-right: 5px;
    margin-top: 5px;
}

.gm-style-iw {
    background-color: #792411;
    color: white;
    border-radius:8px;
    box-shadow:8px 8px 16px #222;
    padding-left: 10px;
    padding-top: 10px;
    padding-bottom: 10px;
}
 


#rightside {
  float: right;
  padding-top: 13px;
  color: navy;
}




