@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600;700;800&family=Poppins:wght@100;200;300;400;500;600;700;800;900');

body {
    margin: 0;
    padding: 0;
    font-family: 'Open Sans', sans-serif;
}

h1, h2 {
    font-weight: normal;
    padding: 0;
    margin: 0;
}

pre, .code_pre {
    background: #eee;
    padding: 3px 7px;
    font-family: monospace;
    white-space: pre;
    margin: 1em 0;
    font-weight: normal;
    white-space: pre-wrap;
}

.block_body {

}

/******************** Sidebar Block *********************/
.sidebar_block {
    width: 299px;
    height: 100%;
    float: left;
    margin: 0 0 40px;
}
.header_title {
    text-align: center;
    padding: 20px;
    margin-bottom: 20px;
}
.header_title a {
    display: flex;
    align-items: center;
    color: #000;
    text-decoration: none;
    letter-spacing: 0.2rem;
    text-transform: uppercase;
    font-size: 20px;
    font-weight: bold;
    font-family: "Poppins", sans-serif;
}
.header_title span {
    margin-left: 0.6rem;
}

/******************** Menu Block *********************/
.menu_block {

}

.menu_item {
    padding: 5px 40px;
    border-left: transparent solid 4px;
}

.menu_item a {
    color: #9d9da0;
    text-decoration: none;
}

.menu_item:hover {
    border-left: #000 solid 4px;
}

.menu_item a:hover {
    color: #000;
}

.menu_select {
    border-left: #1d98d6 solid 4px !important;;
}
.menu_select a {
    color: #1d98d6 !important;;
}

/******************** Content Block *********************/
.content_block {
    height: 100%;
    margin-left: 300px;
}

.content_title {
    font-weight: normal;
    padding: 20px;
    margin: 0 20px;
    border-bottom: #ddd solid 1px;
}

.content {
    margin: 20px 0;
    padding: 20px 40px;
    border-left: #ddd solid 1px;
}

@media screen and (max-width: 860px) {
  .sidebar_block {
      float: none;
  }
  .content_block {
    margin-left: 0;
  }
}