/**
 * z-index values. Order reflects the stacking
 * of elements from lowest to highest.
 */
/**
 * Font styles
 */
/**
 * Colors
 */
/**
 * Animations
 */
html, body {
  background-color: black;
  background-color: linear-gradient(to bottom, black 0%, #2f3a3d 100%);
  height: 100%;
  min-height: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
  font-family: "museo_sans700", sans-serif;
  color: white;
  -webkit-font-smoothing: antialiased; }

::-moz-selection {
  color: white;
  background-color: #40a4c4; }

::selection {
  color: white;
  background-color: #40a4c4; }

h1 {
  padding: 0;
  margin: 0;
  font-weight: normal; }

.App {
  background: black;
  background: -webkit-linear-gradient(top, black 0%, #2f3a3d 100%);
  background: linear-gradient(to bottom, black 0%, #2f3a3d 100%); }

.Header {
  padding: 20px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4; }
  .Header .AppLink {
    font-size: 12px;
    padding: 5px 13px;
    width: auto; }
  .Header .AppLink-icon {
    margin-right: 5px; }
    .Header .AppLink-icon img {
      vertical-align: inherit;
      width: 13px; }

.Header-logo {
  background-image: url("../images/logo.8973f9f7d8c92c64707e7bbb82404ef38a724060.png");
  background-repeat: no-repeat;
  width: 168px;
  height: 36px;
  margin-bottom: 12px;
  margin-right: 1px; }
  @media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-moz-min-device-pixel-ratio: 2), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
    .Header-logo {
      background-image: url("../images/logo@2x.0660bd3c8405509a7353ad3ee51a931581e03492.png");
      background-size: 168px 36px; } }

.Header-subhead {
  font-size: 12px;
  margin-top: 3px; }

@media only screen and (max-width: 600px), (max-height: 600px) {
  .Header .AppLink {
    display: none; }

  .Header-subhead {
    display: none; } }
.AppLink {
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 30px;
  color: white;
  display: block;
  font-family: "museo_sans700", sans-serif;
  text-align: center;
  text-decoration: none;
  -webkit-transition: background-color 0.2s ease-out;
          transition: background-color 0.2s ease-out; }
  .AppLink:hover {
    background-color: rgba(255, 255, 255, 0.4); }

.AppLink--cta {
  margin: 0 auto 10px;
  padding: 10px 0;
  font-size: 30px;
  width: 100%; }

.AppLink--withIcon {
  display: inline-block;
  font-size: 18px;
  margin-right: 10px;
  padding: 13px 0;
  position: relative;
  width: 150px; }

.AppLink--withIcon:last-child {
  margin-right: 0; }

.AppLink-icon {
  margin-right: 14px;
  vertical-align: text-bottom; }

.AppLink-playButton {
  line-height: 0;
  font-size: 40px; }
  .AppLink-playButton svg {
    width: 22px;
    height: 22px;
    margin-right: 20px; }

.BroadcastDetails {
  opacity: 1;
  -webkit-transition: opacity 1s cubic-bezier(0.165, 0.84, 0.44, 1);
          transition: opacity 1s cubic-bezier(0.165, 0.84, 0.44, 1); }

.BroadcastDetails--delay {
  /* This delay is visually only .5s due to */
  /* the .2s delay on the background transition */
  -webkit-transition-delay: 0.7s;
          transition-delay: 0.7s; }

.BroadcastDetails--hidden {
  opacity: 0;
  pointer-events: none; }

.BroadcastDetails-background {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: black;
  background-color: linear-gradient(to bottom, black 0%, #2f3a3d 100%);
  opacity: 0;
  z-index: 2;
  -webkit-transition: opacity 1s cubic-bezier(0.165, 0.84, 0.44, 1) 0.2s;
          transition: opacity 1s cubic-bezier(0.165, 0.84, 0.44, 1) 0.2s; }
  .BroadcastDetails-background.ready {
    opacity: 1; }

.BroadcastDetails-overlay {
  width: 100%;
  max-width: 700px;
  z-index: 3;
  text-align: center;
  margin: 0 auto; }

.BroadcastDetails-metadata {
  max-height: 500px; }

.BroadcastDetails-appCta {
  margin: 40px auto 0;
  max-width: 320px;
  font-family: "museo_sans300", sans-serif; }

@media only screen and (max-width: 600px), (max-height: 600px) {
  .BroadcastDetails-metadata .ProfileAvatar {
    display: none; }
  .BroadcastDetails-metadata .ProfileName {
    margin-top: 14px;
    font-size: 20px; }

  .BroadcastDetails-appCta p {
    margin: 0; } }
@-webkit-keyframes slideacross {
  0% {
    background-position-x: 0; }
  100% {
    background-position-x: -68px; } }
@keyframes slideacross {
  0% {
    background-position-x: 0; }
  100% {
    background-position-x: -68px; } }
.BroadcastReplayButton-loading {
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  z-index: -1;
  background-image: url("../images/video_loading_pattern.f6d1fdcb89c7536d8955d1028c1efa8c27f85cd1.png");
  -webkit-animation-name: slideacross;
          animation-name: slideacross;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear; }
  @media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-moz-min-device-pixel-ratio: 2), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
    .BroadcastReplayButton-loading {
      background-image: url("../images/video_loading_pattern@2x.83ddc2127241d7ee5c83e1569aecbbc2c505bd5c.png");
      background-size: 68px 68px; } }

.BroadcastReplayButton {
  margin: 0 auto 40px;
  width: 180px; }
  .BroadcastReplayButton:hover .circle {
    fill-opacity: 0.15; }
  .BroadcastReplayButton.is-loading {
    border-radius: 100px;
    overflow: hidden;
    position: relative; }
    .BroadcastReplayButton.is-loading .BroadcastReplayButton-loading {
      display: inherit; }
  .BroadcastReplayButton svg {
    cursor: pointer; }
  .BroadcastReplayButton .circle {
    -webkit-transition: 0.2s fill-opacity linear;
            transition: 0.2s fill-opacity linear; }
  .BroadcastReplayButton .icon-play,
  .BroadcastReplayButton .icon-pause {
    fill-opacity: 0; }
  .BroadcastReplayButton.is-loading .icon-pause, .BroadcastReplayButton.is-playing .icon-pause {
    fill-opacity: 1; }
  .BroadcastReplayButton.is-paused .icon-play {
    fill-opacity: 1; }

.BroadcastNextButton-arrow {
  background-repeat: no-repeat;
  height: 33px;
  position: absolute;
  right: 20px;
  width: 19px;
  background-image: url("../images/nextarrow.c307e7bb1fe3dde1fb752ea127ebb2984531e551.png"); }
  @media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-moz-min-device-pixel-ratio: 2), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
    .BroadcastNextButton-arrow {
      background-image: url("../images/nextarrow@2x.b62a304c6cef78d6b128bf3b756c64f818b57e91.png");
      background-size: 19px 33px; } }

.BroadcastNextButton-label {
  line-height: 2;
  margin-right: 25px;
  opacity: 0;
  -webkit-transition: 0.3s ease-out;
          transition: 0.3s ease-out; }

.BroadcastNextButton {
  position: absolute;
  top: 0;
  right: 0;
  padding: 20px;
  overflow: hidden;
  cursor: pointer;
  z-index: 4; }
  .BroadcastNextButton:hover .BroadcastNextButton-label {
    opacity: 1; }

.BroadcastState {
  font-family: "museo_sans300", sans-serif;
  font-size: 16px; }

.BroadcastState--error {
  color: #a4b8be;
  font-size: 32px; }

.BroadcastState p {
  margin: 0; }

.BroadcastState-noReplay {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5); }

.BroadcastTitle {
  font-family: "museo_sans300", sans-serif;
  font-size: 48px;
  line-height: 1.2;
  margin-bottom: 20px;
  margin-top: 10px;
  word-wrap: break-word; }

@media only screen and (max-width: 600px), (max-height: 600px) {
  .BroadcastTitle {
    font-size: 28px;
    line-height: 32px;
    margin-bottom: 0; } }
.BroadcastLocation {
  float: left;
  font-family: "museo_sans700", sans-serif;
  font-size: 16px; }

.ProfileAvatar-image {
  border: 2px solid white;
  border-radius: 50%;
  width: 100px;
  height: 100px; }

.ProfileAvatar .ProfileLink,
.ProfileAvatar .ProfileLink:hover {
  background: none;
  border-radius: none;
  color: transparent; }

.ProfileName {
  font-family: "museo_sans700", sans-serif;
  font-size: 24px;
  margin-top: 20px; }
  .ProfileName .ProfileUsername {
    color: rgba(255, 255, 255, 0.5);
    font-size: 16px;
    margin-bottom: 2px;
    margin-top: -3px; }

.ProfileName--withUsername .ProfileLink {
  border-radius: 35px;
  padding-left: 35px;
  padding-right: 35px; }

.ProfileUsername {
  font-family: "museo_sans300", sans-serif; }

.ProfileUsername-verified {
  margin-left: 5px; }

.ProfileDescription {
  word-wrap: break-word; }

.ProfileDescription a {
  color: #40a4c4;
  text-decoration: none; }
  .ProfileDescription a:hover {
    text-decoration: underline; }

.ProfileLink {
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 30px;
  color: white;
  display: inline-block;
  padding: 5px 15px;
  text-decoration: none;
  -webkit-transition: background-color 0.2s ease-out;
          transition: background-color 0.2s ease-out; }
  .ProfileLink .ProfileUsername-verified .verified-bg {
    opacity: 0.5;
    -webkit-transition: opacity 0.2s ease-out;
            transition: opacity 0.2s ease-out; }
  .ProfileLink:hover {
    background-color: rgba(255, 255, 255, 0.4); }
    .ProfileLink:hover .ProfileUsername-verified .verified-bg {
      opacity: 1; }

.ReplayProgressBar {
  background-color: rgba(255, 255, 255, 0.7);
  bottom: 0;
  height: 2px;
  left: 0;
  overflow: hidden;
  position: absolute;
  right: 0;
  -webkit-transition: width 0.1s linear;
          transition: width 0.1s linear;
  z-index: 1; }

.ReplayControls {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0; }
  .ReplayControls.is-playing .ReplayControls-button .ReplayControls-pause {
    display: inherit; }
  .ReplayControls.is-playing .ReplayControls-hud .ReplayControls-pause {
    display: none; }
  .ReplayControls.is-paused .ReplayControls-button .ReplayControls-play {
    display: inherit; }
  .ReplayControls.is-paused .ReplayControls-hud .ReplayControls-play {
    display: none; }
  .ReplayControls .ReplayControls-cover {
    cursor: pointer;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0; }
  .ReplayControls .ReplayControls-hud {
    margin: 0 auto;
    pointer-events: none;
    position: absolute;
    top: 50%;
    right: 0;
    left: 0;
    height: 0;
    width: 0; }
    .ReplayControls .ReplayControls-hud .ReplayControls-icon svg {
      opacity: 0; }
  .ReplayControls .ReplayControls-button {
    cursor: pointer;
    position: absolute;
    right: 40px;
    bottom: 30px;
    z-index: 1; }
    .ReplayControls .ReplayControls-button .ReplayControls-icon {
      display: none; }
    .ReplayControls .ReplayControls-button .ReplayControls-pause {
      margin-right: 4px; }

@media only screen and (max-width: 500px) {
  .ReplayControls .ReplayControls-button {
    bottom: 20px; } }
.TwitterProfileButton .ProfileLink:link, .TwitterProfileButton .ProfileLink:visited {
  background-color: white;
  border-radius: 30px;
  border: 1px solid #59adeb;
  color: #59adeb;
  display: block;
  font-family: "museo_sans500", sans-serif;
  font-size: 20px;
  padding: 12px 35px;
  text-decoration: none;
  -webkit-transition: background-color 0.1s ease-out, color 0.1s;
          transition: background-color 0.1s ease-out, color 0.1s; }
.TwitterProfileButton .ProfileLink:hover {
  background-color: #59adeb;
  color: white;
  text-decoration: none; }
.TwitterProfileButton .ProfileLink:focus, .TwitterProfileButton .ProfileLink:active {
  background-color: #509dd4;
  color: white; }

.Video {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0; }

.VideoOverlay {
  background-image: url(../images/broadcast_details_fade.3ff7c8ed82331065fe2d932ad6548b8214b4e3b4.png);
  background-repeat: repeat-x;
  background-size: 100% 100%;
  bottom: 0;
  left: 0;
  padding: 0 20px 20px;
  position: absolute;
  width: 100%; }

.VideoOverlay-container {
  max-height: 206px;
  padding-top: 20px; }
  .VideoOverlay-container .BroadcastTitle {
    font-size: 32px;
    line-height: 1.1;
    margin-bottom: 15px;
    max-width: 400px;
    -webkit-transform: translateZ(0); }
  .VideoOverlay-container .ProfileName {
    float: left;
    font-family: "museo_sans700", sans-serif;
    font-size: 16px;
    margin: 0 20px 0 0; }
  .VideoOverlay-container .BroadcastLocation,
  .VideoOverlay-container .Viewers {
    margin: 5px 20px 5px 0; }

@media only screen and (max-width: 500px) {
  .VideoOverlay-container .BroadcastTitle {
    display: none; } }
.Viewers {
  background-image: url("../images/icon_viewers.b38ad4fdef1f8ec08d677d57781d4f6839e020be.png");
  background-position: 0 3px;
  background-repeat: no-repeat;
  float: left;
  padding-left: 16px; }
  @media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-moz-min-device-pixel-ratio: 2), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
    .Viewers {
      background-image: url("../images/icon_viewers@2x.117b72a316bbeecabf9be63367d0c79cdf32337e.png");
      background-size: 12px 15px; } }

.Heart {
  position: absolute;
  bottom: -10px;
  right: 0;
  height: 30px;
  width: 30px;
  padding: 1px;
  -webkit-transform: scale(0);
      -ms-transform: scale(0);
          transform: scale(0);
  stroke: white;
  stroke-width: 2; }

.Hearts {
  list-style: none;
  margin-right: 20px;
  padding: 0;
  position: relative; }
  .Hearts.Hearts--forReplay .Heart {
    bottom: 10px;
    right: 3px; }

.Comments {
  position: relative; }
  .Comments ul {
    padding: 0;
    list-style: none;
    position: absolute;
    max-width: 400px;
    bottom: 0;
    overflow: hidden; }

@-webkit-keyframes slidein {
  0% {
    max-height: 0; }
  100% {
    max-height: 100px; } }

@keyframes slidein {
  0% {
    max-height: 0; }
  100% {
    max-height: 100px; } }
.Comment {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  -webkit-flex-flow: row nowrap;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-box-align: top;
  -webkit-align-items: top;
      -ms-flex-align: top;
          align-items: top;
  position: relative;
  float: left;
  clear: both;
  margin-top: 8px;
  background-repeat: no-repeat;
  background-size: auto 100%;
  background-position: -6px 0;
  border-radius: 3px;
  -webkit-transition: opacity 4.5s cubic-bezier(0.165, 0.84, 0.44, 1);
          transition: opacity 4.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  max-width: 100%; }
  .Comment.slidein {
    -webkit-animation-duration: 1s;
            animation-duration: 1s;
    -webkit-animation-name: slidein;
            animation-name: slidein;
    -webkit-animation-timing-function: cubic-bezier(0.29, 0.98, 0.68, 1);
            animation-timing-function: cubic-bezier(0.29, 0.98, 0.68, 1); }

.Comment.Comment-participantOrange {
  background: #f5a623; }

.Comment.Comment-participantPurple {
  background: #ab70d4; }

.Comment.Comment-participantGreen {
  background: #99ce62; }

.Comment.Comment-participantPeriwinkle {
  background: #5c75dc; }

.Comment.Comment-participantRed {
  background: #d54d81; }

.Comment.Comment-participantYellow {
  background: #ded569; }

.Comment.Comment-participantTeal {
  background: #5ed5b1; }

.Comment.Comment-participantPink {
  background: #e697dc; }

.Comment.Comment-participantBrown {
  background: #92643e; }

.Comment.Comment-participantVividTangerine {
  background: #ffa98a; }

.Comment.Comment-participantSkyBlue {
  background: #84e1eb; }

.Comment.Comment-participantFern {
  background: #69ab63; }

.Comment.Comment-participantCarnation {
  background: #f85b5b; }

.Comment-avatar {
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-bottom-left-radius: 3px;
  border-top-left-radius: 3px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  min-height: 43px;
  opacity: 0.5;
  position: relative;
  width: 35px; }

.Comment-body {
  background: white;
  padding: 5px 10px 4px;
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
  max-width: 365px; }

.Comment-username {
  float: left;
  color: #a4b8be;
  font-family: "museo_sans300", sans-serif;
  font-size: 12px; }

.Comment-message {
  float: left;
  clear: left;
  color: #3f4d51;
  font-family: "museo_sans300", sans-serif;
  font-size: 16px;
  line-height: 18px;
  word-wrap: break-word;
  width: 100%; }

.Modal {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0; }

.Modal-background {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: black;
  cursor: pointer;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease-out;
          transition: opacity 0.3s ease-out;
  z-index: 5; }

.Modal-content {
  background-color: white;
  border-radius: 4px;
  color: #a4b8be;
  font-family: "museo_sans300", sans-serif;
  font-size: 16px;
  margin: 0 20px;
  max-width: 400px;
  min-width: 300px;
  opacity: 0;
  padding-top: 40px;
  position: relative;
  text-align: center;
  z-index: 6; }

.Modal-dismiss {
  background-image: url("../images/close_x.74c4e7180cdb0fc7e0839a3b2a3871feee107e8b.png");
  background-color: #88c6d9;
  background-repeat: no-repeat;
  background-position: center 20px;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  cursor: pointer;
  height: 50px;
  position: absolute;
  right: 20px;
  top: 0;
  width: 40px;
  -webkit-transition: background-color 0.1s ease-out;
          transition: background-color 0.1s ease-out; }
  @media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-moz-min-device-pixel-ratio: 2), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
    .Modal-dismiss {
      background-image: url("../images/close_x@2x.72b8cb45226c849ea88961ddf99e7871d6307d47.png");
      background-size: 15px 15px; } }
  .Modal-dismiss:hover {
    background-color: #64b4cc; }
  .Modal-dismiss:focus, .Modal-dismiss:active {
    background-color: #43a3c1; }

.Modal--hidden {
  pointer-events: none; }
  .Modal--hidden .Modal-content {
    margin-bottom: -400px;
    opacity: 0;
    -webkit-transition: opacity 0.3s ease-out 0.2s, margin-bottom 0.5s ease-in;
            transition: opacity 0.3s ease-out 0.2s, margin-bottom 0.5s ease-in; }
  .Modal--hidden .Modal-background {
    opacity: 0; }

.Modal--visible {
  pointer-events: auto; }
  .Modal--visible .Modal-content {
    margin-bottom: 0;
    opacity: 1;
    -webkit-transition: opacity 0.3s ease-out, margin-bottom 0.5s cubic-bezier(0.29, 1.48, 0.61, 1.01);
            transition: opacity 0.3s ease-out, margin-bottom 0.5s cubic-bezier(0.29, 1.48, 0.61, 1.01); }
  .Modal--visible .Modal-background {
    opacity: 0.5; }

.ProfileModal .ProfileName {
  color: #3f4d51;
  margin-top: 10px; }
.ProfileModal .ProfileUsername {
  color: #a4b8be; }
.ProfileModal .ProfileDescription {
  margin: 30px 40px 40px; }
.ProfileModal .TwitterProfileButton {
  margin: 80px 20px 40px; }

.u-fullHeight {
  height: 100%;
  min-height: 100%;
  overflow: hidden; }

.u-imageReplacement, .Header-logo {
  display: block;
  text-indent: -9999px;
  white-space: nowrap;
  overflow: hidden; }

.u-flexParent {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-align-content: center;
      -ms-flex-line-pack: center;
          align-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center; }

.u-flexItem {
  -webkit-box-ordinal-group: 1;
  -webkit-order: 0;
      -ms-flex-order: 0;
          order: 0;
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 auto;
      -ms-flex: 0 1 auto;
          flex: 0 1 auto;
  -webkit-align-self: center;
      -ms-flex-item-align: center;
          align-self: center; }

.u-opacity-0 {
  opacity: 0; }

.u-opacity-10 {
  opacity: 0.1; }

.u-opacity-50 {
  opacity: 0.5; }

.u-opacity-90 {
  opacity: 0.9; }

.u-opacity-100 {
  opacity: 1; }

.u-offscreen {
  display: block;
  text-indent: -9999px;
  white-space: nowrap;
  overflow: hidden;
  height: 1px;
  opacity: 0; }

.u-pullRight {
  float: right; }

.u-pullLeft {
  float: left; }

.u-transition-1 {
  -webkit-transition: opacity 1s cubic-bezier(0.165, 0.84, 0.44, 1);
          transition: opacity 1s cubic-bezier(0.165, 0.84, 0.44, 1); }

.u-clearfix:after {
  content: " ";
  display: block;
  height: 0;
  clear: both; }

.u-pointer-events-none {
  pointer-events: none; }

.u-participantOrange {
  fill: #f5a623; }

.u-participantPurple {
  fill: #ab70d4; }

.u-participantGreen {
  fill: #99ce62; }

.u-participantPeriwinkle {
  fill: #5c75dc; }

.u-participantRed {
  fill: #d54d81; }

.u-participantYellow {
  fill: #ded569; }

.u-participantTeal {
  fill: #5ed5b1; }

.u-participantPink {
  fill: #e697dc; }

.u-participantBrown {
  fill: #92643e; }

.u-participantVividTangerine {
  fill: #ffa98a; }

.u-participantSkyBlue {
  fill: #84e1eb; }

.u-participantFern {
  fill: #69ab63; }

.u-participantCarnation {
  fill: #f85b5b; }

/*# sourceMappingURL=stylesheet.css.map */