#sharp-widget img {max-width: 100% !important}

#sharp-widget .form-control {
    display: block;
    width: 100%;
    height: 34px;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.42857143;
    color: #555;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
    -webkit-transition: border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
}

#sharp-widget h1 { font-size: 36px; }
#sharp-widget h2 { font-size: 30px; }
#sharp-widget .panel-title { font-size: 16px; }


#sharp-widget * {
  .box-sizing(border-box);
}
#sharp-widget *:before,
#sharp-widget *:after {
  .box-sizing(border-box);
}


#sharp-widget {
  font-size: 14px;
  -webkit-tap-highlight-color: rgba(0,0,0,0);
}

#sharp-widget figure {
  margin: 0;
}

#sharp-widget img {
  vertical-align: middle;
}

#sharp-widget .img-responsive {
  .img-responsive();
}

#sharp-widget .img-rounded {
  border-radius: @border-radius-large;
}

#sharp-widget .img-thumbnail {
  padding: @thumbnail-padding;
  line-height: @line-height-base;
  background-color: @thumbnail-bg;
  border: 1px solid @thumbnail-border;
  border-radius: @thumbnail-border-radius;
  .transition(all .2s ease-in-out);

  // Keep them at most 100% wide
  .img-responsive(inline-block);
}

#sharp-widget .img-circle {
  border-radius: 50%; // set radius in percents
}


#sharp-widget hr {
  margin-top:    @line-height-computed;
  margin-bottom: @line-height-computed;
  border: 0;
  border-top: 1px solid @hr-border;
}

#sharp-widget .sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

#sharp-widget .sr-only-focusable {
  &:active,
  &:focus {
    position: static;
    width: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    clip: auto;
  }
}

#sharp-widget [role="button"] {
  cursor: pointer;
}


