/* Common widgets */

/* sidebar */
.sidebar .nav-link {
  display: block;
  padding: 0 15px;
  height: 41px;
  line-height: 41px;
  font-size: 1em;
}
.sidebar .icon {
  float: right;
  line-height: 40px;
}
.sidebar-header {
  display: block;
  padding: 0 15px;
  line-height: 2;
  font-size: 1.5em;
  font-weight: bold;
}
/* breadcrumb */
.breadcrumb {
  padding-top: 0;
  padding-bottom: 0;
  text-align: right;
  border: none;
  background-color: transparent;
}
.breadcrumb-item {
  height: 40px;
  font-size: 1.1em;
  line-height: 40px;
}
.breadcrumb-item a {
  color: #6c757d;
}
.breadcrumb-item + .breadcrumb-item::before {
  content: ">";
}
/* jumbotron */
.jumbotron {
  background-color: transparent;
}
.jumbotron-sm {
  padding: 1.5rem .75rem;
  margin-bottom: 1rem;
}

@media (min-width: 576px) {
  .jumbotron-sm {
    padding: 2rem 1rem;
  }
}
/* help-block */
.help-block {
  display: block;
  margin-top: 5px;
  margin-bottom: 10px;
  color: #6c757d;
}
.btn-white {
  color: #333;
  background: #fff;
  border-color: #fff;
}
.btn-white:hover {
  color: #fff;
  background: transparent;
  border-color: #fff;
}
.btn-white:focus, .btn-white.focus {
  box-shadow: 0 0 0 0.2rem rgba(216, 217, 219, 0.5);
}
.btn-outline-white {
  color: #fff;
  border-color: #fff;
}
.btn-outline-white:hover {
  color: #333;
  background: #fff;
  border-color: #fff;
}
.btn-outline-white:focus,
.btn-outline-white.focus {
  box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
}
/* utilities */
.hidden {
  display: none !important;
}
.text-link:hover {
  text-decoration: underline;
}
.bg-gray {
  background: #f3f5fa;
}
/* ie hack */
.mx-auto {
  margin-left: 0 !important\9;
  margin-right: 0 !important\9;
}
/* ie11 hack */
@media all and (-ms-high-contrast:none) { 
  .mx-auto {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}
@media (max-width: 767px) {
  .d-md-show {
    display: none !important;
  }
}
@media (min-width: 768px) {
  .d-md-none {
    display: none !important;
  }
}
