html, body  {
  padding: 0;
  margin: 0;
  width: 100%;
  height: 100%;
}

ul {
    list-style-type: none;
    padding: 0;
}

#map {
  display: inline-block;
  height: 100%;
  width: 100%;
  z-index: 1;
  /*float: left;*/
}

h1 {
  margin-top: 50px;
  text-align: center;
}

#login {
  position: absolute;
  top: 9px;
  right: 50px;
  z-index: 2;
}

aside {
  /*display: inline-block;*/
  background: rgba(0, 0, 0, 0.7);
  border: 1px solid rgba(0,0,0, 0.8);
  border-radius: 5px;
  float: left;
  left: 20px;
  padding: 10px;
  position: absolute;
  width: 400px;
  z-index: 3;
}

#sidebar {
  height: 480px;
  top: 20px;
}

aside div.input-group:first-child {
    margin-bottom: 5px;
}

aside button, aside .btn-group-vertical {
    margin: 10px;
    display: block;
}

#route {
  margin-left: 0;
}

.btn-group-vertical button {
    margin: 0;
}

hr {
    margin-top: 10px;
    margin-bottom: 0px;
    border-top: 1px solid #616161;
}

.wrap {
    margin: 0 auto;
    width: 940px;
}

.wrap hr {
    margin: 40px 0;
    border-top: 1px solid rgba(171, 171, 171, 0.57);
}

.wrap button {
    margin: 0;
}

.container {
    margin: 0 auto;
    width: 940px;
}

.container hr {
    margin: 40px 0;
    border-top: 1px solid rgba(171, 171, 171, 0.57);
}

.container button {
    margin: 0;
    margin-left: 10px;
}

.container input {
    width: 300px;
    float: left;
}

.container button, .container input {
    display: inline-block;
}

@media (max-width: 720px) {
    aside {
        width: 220px;
    }
}

@media (max-width: 1280px) {
    aside {
        width: 300px;
    }
    #settings-info {
        width: 27px;
        height: 21px;
    }
    #settings-info span:first-child {
        display: none;
    }
    #custom-settings .col-lg-7 {
        width: 199px;
    }
}

.info {
    padding: 0px !important;
}

.info-head {
    margin: 5px 0;
}

.info-head i {
    color: rgba(158, 158, 158, 0.59);
    font-size: 22px;
    vertical-align: middle;
}

.info-head h5 {
    color: #008da7;
    display: inline-block;
    padding-left:10px;
    padding-right: 20px;
    margin: 0;
    vertical-align: bottom;
    font-size: 16px;
}

.node-desc {
    margin-top: 15px;
}

.desc {
    color: #607D8B;
}

#dtp-list {
    margin-bottom: 10px 0 5px;
} 

#dtp-list .dtp-date {
    margin-right: 10px;
    font-size: smaller;
}

#showAllDesc {
    cursor: pointer;
}

.nodeicons {
    font-size: 14px;
    margin-top: 15px;
}

.nodeicons i {
  color: #384B37;
  padding-right: 10px;
}

.info hr + div {
    padding-top: 10px;
}

aside span.glyphicon {
    vertical-align: middle;
    padding-bottom: 2px;
}

.info-video {
    color: #000;
    cursor: pointer;
    font-size: 16px;
}

.factors-title {
  display: block;
  margin-bottom: 15px !important;
}

.factors-title i {
  float: right;
}

[rel="popover"]{
  cursor: pointer;
  display:inline-block;
}

.node-factors {
  margin: 20px 0;
}

.node-factors > * {
  margin-right: 5px;
}

.node-description {
  margin: 20px 0;
}

.node-description > * {
  margin-right: 5px;
}

.factors-title {
  font-size: 14px;
}

.mymodal {
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 9999999;
}

.mymodal iframe {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
}

/*#custom-settings, #weather {
    margin: 10px;
}*/

.tab-content {
  margin-top: 20px;
}

#custom-settings .form-group {
  display: inline-block;
  margin-top: -25px;
  margin-bottom: 0;
}

#custom-settings .input-group-addon {
    width: 70px;
}

#custom-settings .dropdown-toggle {
    margin-top: 5px;
    width: 195px;
}

.dropdown-menu li {
    cursor: pointer;
}

#settings-info {
    cursor: pointer;
    border-radius: 10px;
    float: right;
    font-weight: normal;
}

#settings-info span:last-child {
    font-size: 14px;
}

.popup {
    position: relative;
    max-width: 400px;
    border: 1px solid #71653a;
    border-radius: 5px;
    padding: 20px;
    color: #71653a;
    background-color: #fff1be;
    box-shadow: 0 1px 10px rgba(0, 0, 0, 0.2);
}

/**
 * Tooltips!
 */
[data-tooltip]
{
  position: relative;
  cursor: pointer;
}

[data-tooltip]:before,
[data-tooltip]:after
{
  position: absolute;
  visibility: hidden;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  -webkit-transition: 
      opacity 0.2s ease-in-out,
        visibility 0.2s ease-in-out,
        -webkit-transform 0.2s cubic-bezier(0.71, 1.7, 0.77, 1.24);
    -moz-transition:    
        opacity 0.2s ease-in-out,
        visibility 0.2s ease-in-out,
        -moz-transform 0.2s cubic-bezier(0.71, 1.7, 0.77, 1.24);
    transition:         
        opacity 0.2s ease-in-out,
        visibility 0.2s ease-in-out,
        transform 0.2s cubic-bezier(0.71, 1.7, 0.77, 1.24);
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform:    translate3d(0, 0, 0);
  transform:         translate3d(0, 0, 0);
  pointer-events: none;
}

/* Show the entire tooltip on hover and focus */
[data-tooltip]:hover:before,
[data-tooltip]:hover:after,
[data-tooltip]:focus:before,
[data-tooltip]:focus:after
{
  visibility: visible;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
  z-index: 100;
}

[data-tooltip]:before {
  z-index: 1001;
  border: 6px solid transparent;
  background: transparent;
  content: "";
}

[data-tooltip]:after {
  z-index: 1000;
  padding: 8px;
  width: 200px;
  height: 70px;
  background-color: #000;
  background-color: rgba(51, 51, 51, 0.898039215686);
  color: #fff;
  content: attr(data-tooltip);
  font-size: 12px;
  line-height: 1.2;
  white-space: pre-wrap;
}

.tooltip-right:before,
.tooltip-right:after {
  bottom: 50%;
  left: 100%;
}

.tooltip-right:before {
  margin-bottom: 0;
  margin-left: -12px;
  border-top-color: transparent;
  border-right-color: #000;
  border-right-color: hsla(0, 0%, 20%, 0.9);
}

.tooltip-right:hover:before,
.tooltip-right:hover:after,
.tooltip-right:focus:before,
.tooltip-right:focus:after {
  -webkit-transform: translateX(12px);
  -moz-transform:    translateX(12px);
  transform:         translateX(12px); 
}

.tooltip-right:before {
  top: 4px;
}

.tooltip-right:after {
  margin-left: 0px;
  top: 4px;
  margin-bottom: -16px;
}

.info-route-btn {
  margin: 10px 0 0 0;
}

aside #weather {
  color: #fff;
}

#header {
  display: block;
  height: 30px;
}

#city {
  float: left;
  font-size: 20px;
  padding: 0 10px;
}

#date {
  font-size: 12px;
  float: right;
  margin: 8px 5px;
  color: rgb(220, 221, 221);
}

#update-weather {
  cursor: pointer;
  display: none;
  float: right;
  margin: 8px 5px;
}

#date div, #desc div, #wind  {
  display: inline-block;
}

#weather-desc {
  margin: 5px 10px;
}

#temp {
  font-size: 19px;
}

#wind {
  margin: 5px 10px;
}

i.color-info {
  float: none;
  padding: 3px 7px;
  border-radius: 10px;
  background-color: #42a5f5;
  color: #fff;
  font-size: 11px;
  cursor: help;
}