body {
    position: relative;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 18px;
    padding-top: 50px;
    width: 100%;
    color: #ffff;
    background-color: rgb(34, 33, 33);
  }
  /* General */
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    font-family: 'Roboto', sans-serif;
    margin: 0;
  }
  h2 {
    font-weight: bold;
    margin-bottom: 20px;
  }
  h3 {
    margin-bottom: 30px;
  }
  @media (min-width: 1200px) {
    .container {
      width: 1200px;
    }
  }
  /* Console */
  .console {
    width: 200px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99;
    background-color: rgba(0, 0, 0, 0.9);
    color: rgba(255, 255, 255, 0.7);
    padding: 15px;
  }
  .console label,
  .console input {
    display: inline-block;
    vertical-align: middle;
    font-weight: normal;
    margin: 0;
    cursor: pointer;
  }
  .console input {
    margin-right: 5px;
  }
  /* Owl carousel */
  .owl-nav {
    position: absolute;
    top: -30px;
    right: 18px;
    background-color: #fff;
  }
  .owl-nav .owl-prev,
  .owl-nav .owl-next {
    display: inline-block;
    vertical-align: middle;
  }
  .owl-nav .owl-prev > i,
  .owl-nav .owl-next > i {
    vertical-align: middle;
  }
  .owl-nav .owl-prev {
    margin-right: 10px;
  }
  .example__view {
    position: relative;
  }
  .example__view .download {
    position: absolute;
    top: -43px;
    right: 0;
    color: rgb(241, 236, 236);
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
  }
  .example__view .download:hover,
  .example__view .download:focus {
    color: #f29400;
    text-decoration: none;
  }
  .example__view .download > i {
    vertical-align: middle;
  }
  /* Code preview */
  .code-preview {
    margin-top: 30px;
  }
  .code-preview-inner {
    opacity: 0;
    visibility: hidden;
    z-index: -1;
    height: 0;
    overflow: hidden;
  }
  .code-preview-inner.is-open {
    opacity: 1;
    visibility: visible;
    z-index: 0;
    height: auto;
  }
  .show-code {
    font-size: 12px;
    font-weight: bold;
    margin-left: 20px;
    cursor: pointer;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
  }
  .show-code:hover,
  .show-code:focus {
    color: #f29400;
  }
  .show-code.is-active {
    color: #f29400;
  }
  .show-code.is-active > i {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    transform: rotate(180deg);
  }
  .show-code > i {
    vertical-align: middle;
    -webkit-transition: transform 0.3s;
    -moz-transition: transform 0.3s;
    transition: transform 0.3s;
  }
  .CodeMirror {
    border: 1px solid #eee;
    height: auto;
  }
  /* Gallery small */
  .gallery-small {
    display: -webkit-flex;
    display: -moz-flex;
    display: flex;
    margin-left: -5px;
    margin-right: -5px;
  }
  @media (max-width: 767px) {
    .gallery-small {
      display: block;
    }
  }
  .gallery-small__item {
    -webkit-flex-grow: 1;
    -moz-flex-grow: 1;
    flex-grow: 1;
    padding-left: 5px;
    padding-right: 5px;
    margin-bottom: 10px;
  }
  .gallery-small__image {
    position: relative;
    overflow: hidden;
    
  }
  .gallery-small__image:hover img,
  .gallery-small__image:focus img {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    transform: scale(1.1);
  }
  .gallery-small__image:hover .gallery-small__hover,
  .gallery-small__image:focus .gallery-small__hover {
    visibility: visible;
    opacity: 1;
  }
  .gallery-small__image img {
    -webkit-transition: all 3s;
    -moz-transition: all 3s;
    transition: all 3s;
  }
  .gallery-small__hover {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.2);
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
  }
  .gallery-small__hover > i {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    font-size: 40px;
    color: #fff;
    text-shadow: 2px 2px 5px #000000;
  }
  /* Gallery */
  .gallery__image {
    position: relative;
    margin-bottom: 15px;
  }
  .gallery__image:hover .gallery__hover,
  .gallery__image:focus .gallery__hover {
    visibility: visible;
    opacity: 1;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
  }
  .gallery__image:hover .gallery__hover > i,
  .gallery__image:focus .gallery__hover > i {
    visibility: visible;
    opacity: 1;
  }
  .gallery__hover {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    top: 50%;
    bottom: 50%;
    left: 50%;
    right: 50%;
    background-color: rgba(0, 0, 0, 0.2);
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
  }
  .gallery__hover > i {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    font-size: 40px;
    color: #fff;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
  }
  /* Gallery Masonry */
  /* Uses functionality of '.gallery' */
  .gallery--masonry .gallery__image {
    margin-bottom: 30px;
  }