* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
img {
    max-width: 100%;    
}
img[role=presentation] {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    pointer-events: none;
}
body {
    -webkit-font-smoothing: antialiased;
    font-size: 14px;
}
body, button, input, optgroup, select, textarea {
    font-family: 'open sans', 'Helvetica Neue', Helvetica, Arial, sans-serif !important;
}
p {
    line-height: 1.5;
}
a {
    text-decoration: none;
    color: #00BC87;
}
::-moz-selection {
  color: white;
  background: #00BC87;
  text-shadow: none;
}
::selection {
  color: white;
  background: #00BC87;
  text-shadow: none;
}
.link-default {
    text-decoration: underline;
    color: inherit;
}
.link-green {
    text-decoration: underline;
    color: #00BC87;
}
.link-default-hover:hover {
    text-decoration: underline;
    color: #00BC87;
}
.list {
    line-height: 1.8;
    list-style-type: none;
}
.list > li {
    position: relative;
}
.list > li:before {
    content: "";
    position: absolute;
    top: 12px;
    left: -20px;
    background-color: #23d799;
    border-radius: 100%;
    width: 7px;
    height: 7px;
}
kbd {
    font-family: inherit !important;
    padding: 0 8px;
    font-size: 11px !important;
    font-weight: 700;
    background-color:#7C7C7C;
    color:#fff;
    border-radius: 3px;
    display: inline-block;
    margin: 0 2px;
    line-height: 1.7;
    text-transform: uppercase;
    white-space: nowrap;
}

/* =============
NPROGRESS BAR
============= */
#nprogress {
  pointer-events: none;
}
#nprogress .bar {
  background: #00BC87;
  position: fixed;
  z-index: 1031;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
}
/* Fancy blur effect */
#nprogress .peg {
  display: block;
  position: absolute;
  right: 0px;
  width: 100px;
  height: 100%;
  box-shadow: 0 0 10px #00BC87, 0 0 5px #00BC87;
  opacity: 1.0;
  -webkit-transform: rotate(3deg) translate(0px, -4px);
      -ms-transform: rotate(3deg) translate(0px, -4px);
          transform: rotate(3deg) translate(0px, -4px);
}