body {
  background: white;
  color: #2c3e50;
  font-family: 'Roboto', sans-serif;
}

.page {
  display: flex;
}

#page_content {
  width: calc(100% - 300px);
  display: inline-block;
  border: none;
}

.menu {
  display: inline-block;
  width: 300px;
  height: 100vh;
  background: #f8f9fc;
}

.logo {
  width: 100%;
  background: white;
  padding: 15px 0px 15px 35px;
  box-sizing: border-box;
}

.logo img {
  width: 205px;
}

.menu_items {
  width: 100%;
  margin-top: 40px;
}

.menu_item_wrapper {
  display: flex;
  align-items: center;
  padding: 15px 0px 15px 20px;
  transition: all .4s ease-in-out;
  position: relative;
  border-radius: 0px 25px 25px 0px;
  width: calc(100% - 35px);
  color: #2c3e50;
  text-decoration: none;
  font-size: 21px;
}

.menu_item_wrapper:hover, .menu_item_wrapper.active {
  background: rgba(44, 62, 80, .85);
  color: white;
}

.menu_items span {
  display: block;
  font-weight: 300;
  box-sizing: border-box;
  padding-left: 15px;
}
