.tweet_container {
  width: 100%;
  padding: 10px;
  overflow: auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@media only screen and (max-width: 767px) {
  .tweet_container {
    height: 600px;
  }
}

@media only screen and (min-width: 768px) {
  .tweet_container {
    height: 547px;
  }
}

.tweet_container .tweet_item {
  border-top: 1px solid rgba(15, 70, 100, 0.12);
  padding: 10px;
  position: relative;
}

@media only screen and (min-width: 768px) {
  .tweet_container .tweet_item {
    cursor: pointer;
  }
}

.tweet_container .tweet_item:hover {
  background: #f5f8fa;
}

.tweet_container .tweet_item .block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  z-index: 10;
}

.tweet_container .tweet_item .block img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
}

.tweet_container .tweet_item .block .name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-left: 8px;
}

.tweet_container .tweet_item .block .username {
  margin: 0;
  font-weight: bold;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  overflow: hidden;
  font-weight: 700;
}

@media only screen and (min-width: 768px) {
  .tweet_container .tweet_item .block .username {
    max-width: 168px;
  }
}

.tweet_container .tweet_item .block .username a {
  text-decoration: none;
  color: #292f33;
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.tweet_container .tweet_item .block .username a:hover {
  color: #4096d7;
}

.tweet_container .tweet_item .block .id {
  margin: 0;
  font-size: 12px;
  color: #657786;
  text-align: left;
}

.tweet_container .tweet_item .tweet_content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media only screen and (max-width: 767px) {
  .tweet_container .tweet_item .tweet_content {
    text-align: right;
    margin-left: auto;
  }
}

.tweet_container .tweet_item .tweet_content p {
  text-align: left;
  font-size: 12px;
  line-height: 19px;
  letter-spacing: 0.01rem;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  color: #292f33;
}

@media only screen and (max-width: 767px) {
  .tweet_container .tweet_item .tweet_content p {
    margin: 0;
  }
}

@media only screen and (min-width: 768px) {
  .tweet_container .tweet_item .tweet_content p {
    margin: 10px 0;
  }
}

.tweet_container .tweet_item .tweet_content p a {
  color: #292f33;
  text-decoration: none;
}

.tweet_container .tweet_item .tweet_content p a::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.tweet_container .tweet_item .pic {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
  overflow: hidden;
  text-align: center;
  border-radius: 4px;
  background: #EFEFEF;
  width: 100%;
  max-height: 206px;
  margin: 13px 0 0;
  overflow: hidden;
}

.tweet_container .tweet_item .pic a:hover {
  opacity: 0.8;
}

.tweet_container .tweet_item .pic img {
  max-width: 100%;
}
/*# sourceMappingURL=twitter.css.map */