#aspect-content {
  margin: -30px 0 0 0;
  color: white;
  font-family: "Poppins", sans-serif;
    * {
      box-sizing: border-box;
    }
}

/*.aspect-tab {
  position: relative;
  width: 100%;*/
  /*max-width: 1000px;*/
 /* margin: 15px;
  border-radius: 10px;
  background-color: $white;
  box-shadow: 0 0 0 1px rgba(236,236,236,1);
  opacity: 1;
  transition: box-shadow .2s, opacity .4s;
  
  &:hover {
    box-shadow: 0 4px 10px 0 rgba(0, 0, 0, .11);
  }
}*/

.aspect-tab {
  position: relative;
  width: 100%;
  /*max-width: 1000px;*/
  margin: 15px;
  border-radius: 4px;
  background-color: $white;
  box-shadow: 0 0 0 1px rgba(236,236,236,1);
  opacity: 1;
  transition: box-shadow .2s, opacity .4s;
  
  &:hover {
    box-shadow: 0 4px 10px 0 rgba(0, 0, 0, .11);
  }
}
.aspect-tab1 {
  position: relative;
  width: 100%;
  /*max-width: 1000px;*/
  margin: 15px;
  border-radius: 4px;
  background-color: $white;
  /*box-shadow: 0 0 0 1px rgba(236,236,236,1);*/
  opacity: 1;
  transition: box-shadow .2s, opacity .4s;
  
  &:hover {
    box-shadow: 0 4px 10px 0 rgba(0, 0, 0, .11);
  }
}

@include chart(44px, 4px);
.aspect-tab-content {
  background-color: $white-light-gray;
  font-size: 0;
  text-align: justify;
}

.sentiment-wrapper {
  padding: 24px 30px 30px;
}

.sentiment-wrapper > div {
  display: inline-block;
  width: 33.3%;
  /*max-width: 390px;*/
  padding: 0 5px;
  box-sizing: border-box;
  vertical-align: top;
  cursor: default;
}

.sentiment-wrapper > div > div {
  width: 100%;
  padding: 16px 24px 20px;
  box-sizing: border-box;
  border-radius: 4px;
  background-color: #fbb8b8;
  border: 1px solid #ececec;
  text-align: left;
  color: black;
  font-weight: bold;
}

@media screen and (max-width: 800px) {
  .aspect-content {
    height: auto;
    padding: 10px 87px 10px 30px;
    &:before {
      display: none;
    }
    &:after {
      top: 0;
    }
  }
  .aspect-content > div {
    display: block;
    width: 100%;
  }
  .aspect-stat {
    margin-top: 10px;
    text-align: left;
  }
}

@media screen and (max-width: 750px) {
  .sentiment-wrapper > div {
    display: block;
    width: 100%;
    max-width: 100%;
  }
  .sentiment-wrapper > div:not(:first-child) {
    margin-top: 10px;
  }
}