html, body{
  font-family: arial,helvetica,helv,swiss,sans,"sans-serif";
  font-size: 14px;
}

a {
  color: #000;
}

a:hover {
  color: #F60;
}

h1{
  font-size: 28px;
}

ul{
  list-style-type: square;
  padding-left: 2rem;
}

button.badge{
  border: 0;
}

.btn{
  border-radius: 3px;
}

.btn-xs{
  padding: 3px 10px;
  font-size: 15.5px;
  font-weight: bold;
  line-height: 1;
}

.btn-primary {
  background-color: #1b6caa;
  border-color: #1b6caa;
}

.btn-primary:hover {
  background-color: #FF740E;
  border-color: #FF740E;
}

.btn-primary:not(:disabled):not(.disabled).active,
.btn-primary:not(:disabled):not(.disabled):active,
.show>.btn-primary.dropdown-toggle {
  background-color: #bd2130;
  border-color: #b21f2d;
}

.btn-primary:not(:disabled):not(.disabled).active:focus,
.btn-primary:not(:disabled):not(.disabled):active:focus,
.show>.btn-primary.dropdown-toggle:focus,
.btn-primary.focus, .btn-primary:focus {
  box-shadow: 0 0 0 0.2rem rgba(52,58,64,.5);
}

.btn-primary.disabled, .btn-primary:disabled{
  background-color: #343a40;
  border-color: #343a40;
}

.breadcrumb{
  background-color: #f5f5f5;
  padding: 10px 0;
}

.breadcrumb-item + .breadcrumb-item::before{
  content: "->";
}

.red{
  color: #FF0000;
}

.blue{
  color: #007bff;
}

/* page-tools */
.page-tools {
  display: inline-block;
  padding-left: 0;
  margin: 20px 0;
  border-radius: 4px;
}
.page-tools > li {
  display: inline;
}
.page-tools > li > a,
.page-tools > li > span {
  position: relative;
  float: left;
  padding: 6px 12px;
  margin-left: -1px;
  line-height: 1.42857143;
  color: #000;
  text-decoration: none;
  background-color: #fff;
  border: 1px solid #ddd;
  box-shadow: 2px 2px 5px #ccc;
}
.page-tools > li:first-child > a,
.page-tools > li:first-child > span {
  margin-left: 0;
  /* border-top-left-radius: 4px; */
  /* border-bottom-left-radius: 4px; */
}
.page-tools > li:last-child > a,
.page-tools > li:last-child > span {
  /* border-top-right-radius: 4px; */
  /* border-bottom-right-radius: 4px; */
}
.page-tools > li > a:hover,
.page-tools > li > span:hover,
.page-tools > li > a:focus,
.page-tools > li > span:focus {
  z-index: 2;
  color: #000;
  background-color: #eee;
  border-color: #ddd;
}
.page-tools > .active > a,
.page-tools > .active > span,
.page-tools > .active > a:hover,
.page-tools > .active > span:hover,
.page-tools > .active > a:focus,
.page-tools > .active > span:focus {
  z-index: 3;
  color: #fff;
  cursor: default;
  background-color: #1b6caa;
  border-color: #1b6caa;
}
.page-tools > .disabled > span,
.page-tools > .disabled > span:hover,
.page-tools > .disabled > span:focus,
.page-tools > .disabled > a,
.page-tools > .disabled > a:hover,
.page-tools > .disabled > a:focus {
  color: #777;
  cursor: not-allowed;
  background-color: #fff;
  border-color: #ddd;
}
.page-tools-lg > li > a,
.page-tools-lg > li > span {
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.3333333;
}
.page-tools-lg > li:first-child > a,
.page-tools-lg > li:first-child > span {
  /* border-top-left-radius: 6px; */
  /* border-bottom-left-radius: 6px; */
}
.page-tools-lg > li:last-child > a,
.page-tools-lg > li:last-child > span {
  /* border-top-right-radius: 6px; */
  /* border-bottom-right-radius: 6px; */
}
.page-tools-sm > li > a,
.page-tools-sm > li > span {
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
}
.page-tools-sm > li:first-child > a,
.page-tools-sm > li:first-child > span {
  /* border-top-left-radius: 3px; */
  /* border-bottom-left-radius: 3px; */
}
.page-tools-sm > li:last-child > a,
.page-tools-sm > li:last-child > span {
  /* border-top-right-radius: 3px; */
  /* border-bottom-right-radius: 3px; */
}

/* static-content */
.static-content h1{
  font-size: 20px;
}
.static-content h2{
  font-size: 1rem;
  font-weight: bold;
}
.static-content p{
  margin-bottom: 0.5rem;
}

.social-button{
  display: inline-block;
  width: 35px;
  height: 35px;
  vertical-align: middle;
  background-position: center;
  background-repeat: no-repeat;
}
.social-twitter{
  background-image: url(../images/Twitter_Logo_Blue.svg);
}