.bg-primary {
  color: #fff;
  background-color: #158cba;
}

.visible-xxs {
  display: none !important;
}
@media (max-width: 479px) {
  .hidden-xxs {
    display: none !important;
  }
  .visible-xxs {
    display: inline-block !important;
  }
}

.navbar {
  margin-top: 20px;
  border: none; /* remove border */
}
.navbar-nav { /* remove top and bottom margin */
  margin-top: 0;
  margin-bottom: 0;
  font-size: 18px; /* normalize font sizes */
}
.navbar-brand {
  padding-top: 0; /* remove top padding */
  font-weight: 500;
}
.navbar .navbar-toggle:hover { /* change color */
  background-color: #f9f9f9;
  border-color: #f9f9f9;
}
.navbar .navbar-toggle .icon-bar { /* change color */
  background-color: #333;
}
.navbar .nav > li > a:hover,
.navbar .nav > li > a:focus { /* change color */
  background-color: #f9f9f9;
}

.jumbotron {
  margin-bottom: 40px;
  padding-top: 60px;
  padding-bottom: 60px;
}
.jumbotron h1 {
  margin-top: 0;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .jumbotron h1 {
    font-size: 36px;
  }
}

#header {
  text-align: center;
}
#header input {
  border-color: #fff;
  -webkit-box-shadow: none;
  box-shadow: none;
  color: #333;
}
#header .btn {
  border-color: #fff;
  color: #fff;
  background-color: transparent;
}
#header .btn:hover,
#header .btn:focus {
  color: #158cba;
  background-color: #fff;
}

.banner {
  padding-top: 30px;
  padding-bottom: 30px;
  text-align: center;
}
.banner p {
  margin-bottom: 0;
  font-size: 18px;
}

/* Demo */

#header input,
#header button {
  margin-top: 20px;
}

@media (min-width: 768px) {
  .form-inline .form-control {
    width: 60%;
  }
}

.alert {
  display: none;
  margin-bottom: 40px;
  border: none;
  border-radius: 0;
  text-align: center;
  font-weight: 500;
  font-size: 18px;
}
.alert-warning {
  color: #fff;
  background-color: #ff851b;
}
.alert-danger {
  color: #fff;
  background-color: #ff4136;
}
.alert-warning select,
.alert-error select {
  color: #333;
}

#map {
  visibility: hidden;
  width: 100%;
  height: 200px;
  margin-bottom: 40px;
}

.representative {
  margin-bottom: 40px;
}
.representative p {
  margin-bottom: 0;
}
.representative .btn {
  border-color: #158cba;
  color: #158cba;
  background-color: #fff;
}
.representative .btn:hover,
.representative .btn:focus {
  color: #fff;
  background-color: #158cba;
}

/* https://stackoverflow.com/questions/5445491/height-equal-to-dynamic-width-css-fluid-layout */
.avatar {
  overflow: hidden;
  width: 100%;
  height: 0;
  margin-bottom: 20px;
  padding-top: 100%;
  border-radius: 100%;
  border: 3px solid #eee;
  background-color: #eee;
  background-position: 0% 17%;
  background-repeat: no-repeat;
  background-size: 100% auto; /* not same as cover */
}
@media (min-width: 1680px) {
  .avatar {
    overflow: hidden;
    width: 240px;
    height: 0;
    margin-bottom: 20px;
    padding-top: 240px;
    border-radius: 240px;
    border: 3px solid #eee;
    background-color: #eee;
    background-position: 0% 17%;
    background-repeat: no-repeat;
    background-size: 240px auto; /* not same as cover */
  }
}

#plugin {
  background-color: #fef9e7;
}
#plugin p {
  font-size: 24px;
  font-weight: 300;
}
#plugin .btn {
  margin-top: 20px;
  margin-left: 10px;
  margin-right: 10px;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  border-color: #ff4136;
  color: #fff;
  background-color: #ff4136;
}
#plugin .btn:hover,
#plugin .btn:focus {
  color: #ff4136;
  background-color: transparent;
}
