/* width */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

/* Track */
::-webkit-scrollbar-track {
    background: none;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #f44336;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #555;
}

body {
  background-color: white;
  background-attachment: fixed;
  color: #333;
  font-family: 'Quicksand', sans-serif;
  padding: 0;
  margin: 0;
}

h1 i, h2 i, h3 i, h4 i, h5 i {
  color: #f44336;
}

h1, h2, h3, h4, h5 {
  margin-top: 30px;
}

hr {
  background-color: #f44336;
  border: 0;
  border-radius: 20px;
  height: 0.07em;
  margin: 24px 0;
  padding: 0;
}

ol {
  line-height: 30px;
}

dl, ol, ul {
  line-height: 30px;
  margin-bottom: 0 !important;
}

a {
  color: #000;
  text-decoration: none;
}

a:hover {
  color: #666;
  text-decoration: none;
}

code {
  color: #f44336;
  background-color: #f4433630;
  padding: 2px;
}

blockquote {
  background: white;
  color: #333;
  font-size: 14px;
  padding: 10px 15px;
  background-color: #fff;
  margin: 0 auto 15px;
  --tw-shadow: 0 20px 30px -16px rgba(9,9,16,.2)!important;
  --tw-shadow-colored: 0 20px 30px -16px var(--tw-shadow-color)!important;
  box-shadow: var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)!important;
}

blockquote code {
  background-color: #f9fbfd;
  border-radius: 3px;
  box-shadow: 0 1px 1px rgba(0,0,0,.125);
  color: #f44336;
  margin-left: 3px;
  margin-right: 3px;
  padding: 1px 5px;
}

blockquote a {
  color: #333;
  text-decoration: none;
  font-weight: bold;
}

blockquote a:hover {
  text-decoration: none;
  color: #666 !important;
}

.pointer {
  cursor: pointer;
}

#topButton {
  background-color: #f44336;
  border: none;
  border-radius: 25px;
  bottom: 20px;
  color: white;
  cursor: pointer;
  display: none;
  font-size: 18px;
  outline: none;
  padding: 10px 18px;
  position: fixed;
  right: 20px;
  z-index: 99;
}

#content {
  background-color: #fff;
  margin: 0 auto 15px;
  padding: 25px;
  padding-top:5px;
}

.navbar {
  position: fixed;
  width: 100%;
  z-index: 999;
}

.logo {
  text-align: center;
  padding-top: 100px;
}

.logo p {
  -webkit-font-smoothing: antialiased;
  color: #aeaeae;
  font-family: "Miriam Libre", sans-serif;
  font-size: 21px;
  margin-bottom: 60px;
  letter-spacing: -.02em;
}

.hash {
  color: #333;
  font-family: sans-serif;
}

.footer {
  text-align: center;
  padding: 8px 8px;
}

.code-box {
  background-color: #FFF;
  border-radius: 0 5px 5px 0;
  border-left: solid 3px #f44336;
  color: #000;
  margin-bottom: 5px;
  margin-top: 5px;
  max-height: 350px;
  overflow-y: auto;
  padding: 8px;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.125);
  counter-reset: line;
}

.code-box .lang {
  font-weight: bold;
  float: right;
  color: #666;
  top: 3px;
}

.code-box code {
  background-color: transparent !important;
}

.spacer {
  margin-top: 30px;
}

/* Bootstrap Override */
.form-control {
  border: 0 !important;
  border-bottom: solid 1px #9F9F9F !important;
  border-radius: 0 !important;
  background-color: #FFF;
}

.text-primary {
  color: #5a5555 !important;
}

.text-blue {
  color: #006ee0;
}

@media only screen and (min-width : 991px) {
  .nav-link {
      margin-left: 5px;
  }

  .nav-link:hover {
    background: #333;
    border-radius: 5px;
  }

  .active .nav-link {
    background: #333;
    border-radius: 5px;
  }
}

@media only screen and (max-width : 990px) {
  .dropdown-menu {
    border: 0;
  }
}

.bg-light {
  background-color: rgba(168, 168, 168, 0.1) !important;
}

.dropdown-divider {
  border-top: 1px solid #666;
}

.dropdown-item:hover {
  background: #333;
  border-radius: 5px;
}

.dropdown-item:focus {
  background: #333;
  border-radius: 5px;
}

.alert-primary {
    color: #004085 !important;
    background-color: #cce5ff !important;
    border-color: #b8daff !important;
}

.alert-success {
    background: rgba(46, 204, 113, 0.08) !important;
    color: #2ecc71 !important;
    border: 0 !important;
}

.alert-danger {
    background: rgba(223, 12, 12, 0.08) !important;
    color: #df0c0c !important;
    border: 0 !important;
}