* {
  margin: 0;
  padding: 0;
  font-family: Roboto;
}

.display, .options_menu, .btn_option_menu, .svg_option_menu, .content_books, .book_variables {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

body::-webkit-scrollbar-thumb {
  border-radius: 4px;
  background: #9347DD;
}

body::-webkit-scrollbar {
  width: 7px;
  background-color: #f9f3ff;
}

.user_profile_img {
  cursor: pointer;
  width: 40px;
}

.menu {
  background-color: #f9f3ff;
}

.btns_menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 20px 0;
}

.btns_menu button {
  -webkit-transition: ease .2s;
  transition: ease .2s;
  cursor: pointer;
  color: #4D4D4D;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 1.3em;
  border: 0;
  background: none;
  height: 40px;
  width: 30%;
  border-bottom: 2px solid transparent;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}

.btns_menu button:hover {
  background: #eedaff;
  border-bottom: 2px solid #9347DD;
}

.btns_menu .btn_menu_select {
  border-bottom: 2px solid #9347DD;
}

.options_menu {
  margin-bottom: 10px;
}

.btn_option_menu {
  cursor: pointer;
  -webkit-transition: ease .3s;
  transition: ease .3s;
  margin: 0 5px;
  border-radius: 50%;
  background-color: white;
  border: 2px solid #9347DD;
  height: 52px;
  width: 52px;
  -webkit-box-shadow: 0 0 2px #9347DD;
          box-shadow: 0 0 2px #9347DD;
}

.btn_option_menu:hover {
  -webkit-box-shadow: 0 0 5px #9347DD;
          box-shadow: 0 0 5px #9347DD;
  background-color: #9347DD;
  border: 2px solid white;
}

.btn_option_menu:hover .svg_option_menu {
  color: white;
}

.select_btn_option {
  background-color: #9347DD;
  border: 2px solid #9347DD;
}

.select_btn_option .svg_option_menu {
  color: white;
}

.svg_option_menu {
  height: 70%;
  width: 70%;
  color: #9347DD;
}

.text_option_menu {
  font-weight: 500;
  font-size: 1.4em;
}

.content_books {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 20px 0;
}

.book {
  cursor: pointer;
  -webkit-transition: ease .15s;
  transition: ease .15s;
  margin: 10px;
  width: 20%;
  border: 2px solid #7837ba;
  border-radius: 5px;
  text-decoration: none;
  background-color: #7837ba;
  position: relative;
  top: 0px;
  left: 0px;
}

.book:hover {
  top: -4px;
  left: -4px;
  -webkit-box-shadow: 3px 2px 0 #DDC4F4, 5px 5px 0px #7837ba;
          box-shadow: 3px 2px 0 #DDC4F4, 5px 5px 0px #7837ba;
}

.content_img_book {
  margin-bottom: -4px;
  background-color: #9347DD;
}

.img_book {
  border-radius: 5px;
  width: 100%;
}

.book_date {
  padding: 2px 0;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  background-color: #7837ba;
}

.book_date_img {
  margin: 2px;
  width: 14px;
}

.book_date_text {
  color: white;
  font-size: .7em;
}

@media screen and (max-width: 600px) {
  .book {
    width: 40%;
  }
}
/*# sourceMappingURL=styles.css.map */