@charset "utf-8";

/* ==========================================
*
*  play button
*
========================================== */
.playButton  {
  cursor: pointer;
  position: relative;
}

.playButton::before,
.playButton::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  transition: .3s;
}

.playButton::before {
  content: "";
  background: #000;
  opacity: .7;
  z-index: 1;
}

.playButton::after {
  content: "▶";
  width: 50px;
  height: 50px;
  color: #fff;
  font-size: 4rem;
  line-height: 1;
  z-index: 2;
}

.playButton img,
.playButton iframe {
  pointer-events: none;
  vertical-align: bottom;
}

.playButton:hover::before {
  opacity: .1;
}

.playButton:hover::after {
  transform: scale(1.5,1.5);
}

/* ==========================================
*
*  twitter timeline
*
========================================== */

.twTimelineWrap {
  overflow: hidden;
  margin: 0;
  border-radius: 10px;
}

.twTimeline {
  position: relative;
  overflow-y: auto;
  max-height: 300px !important;
  transition: .3s;
  -webkit-overflow-scrolling: touch;
  width: 100%;
  margin: 0 auto;
  /* max-width: 500px; */
}

.twTimelineWrap iframe{
  width: 1000px !important;
  max-width: 100% !important;
}

@media screen and (min-width: 900px){
  .twTimeline {
     max-height: 600px !important;
  }
}
@media screen and (max-width:899px) {
  .twTimelineWrap{width:100%;}
}
@media screen and (max-width:600px) {
}
