/* structure */
.nav__container { position: relative; }
.nav__container .container2 { display:flex; align-items:center; justify-content:space-between; }

/* desktop */
#open-nav { display:none; }
.nav__links { display:flex; gap:20px; align-items:center; }

/* mobile */
@media (max-width: 768px) {
  #open-nav { display:inline-flex; align-items:center; }
  .nav__links {
    display:none;
    position:absolute;
    top:60px;             /* adjust to your header height */
    right:16px;
    left:auto;
    width:min(280px, 90vw);
    background:#0b0b0b;
    border:1px solid rgba(255,255,255,.1);
    border-radius:12px;
    padding:12px 8px;
    flex-direction:column;
    gap:8px;
    z-index:9999;
  }
  .nav__links a { display:block; padding:10px 12px; }
  .nav__container.is-open .nav__links { display:flex; }

  /* optional: lock scroll when open */
  .nav-open { overflow:hidden; }
}

/* screen-reader only helper */
.sr-only {
  position:absolute; width:1px; height:1px; padding:0; margin:-1px;
  overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0;
}
html, body, input, textarea {
  font-family: 'roobert', sans-serif; }

body {
  font-size: 14px; }

::-webkit-input-placeholder, ::-moz-placeholder, :-ms-input-placeholder, :-moz-placeholder {
  font-family: 'roobert', sans-serif; }

h1 {
  font-size: 72px;
  font-weight: bold;
  line-height: 120%;
  text-align: center;
  margin: 0;
  margin-top: 10px;
  margin-bottom: 14px; }
  h1.large-bottom {
    margin-bottom: 30px; }

h2 {
  font-weight: 600;
  font-size: 36px;
  line-height: 58px;
  font-weight: 600;
  line-height: 120%;
  text-align: center;
  margin-bottom: 15px; }

h3 {
  font-weight: 400;
  font-size: 24px;
  line-height: 120%;
  margin-top: 0;
  text-align: center;
  margin-bottom: 15px; }

h4 {
  font-weight: 400;
  font-size: 18px;
  line-height: 120%;
  margin-top: 0;
  margin-bottom: 10px; }
  h4 a {
    font-weight: 600;
    margin-top: 0; }

h5 {
  font-weight: normal;
  font-size: 14px;
  line-height: 130%;
  margin-top: 0; }

@media (max-width: 700px) {
  h1 {
    font-size: 40px; }

  h2 {
    font-size: 28px; }

  h3 {
    font-size: 20px; }

  h4 {
    font-size: 14px; }

  h5 {
    font-size: 12px; } }
p {
  font-size: 1.05rem;
  line-height: 150%; }

.dark {
  color: #fff; }
  .dark h1, .dark h2, .dark h3, .dark h4, .dark h5, .dark h6 {
    color: #fff; }
  .dark a {
    color: #fff; }

.container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
  position: relative; }
  .container.tiny {
    max-width: 450px; }
  .container.small {
    max-width: 620px; }
  .container.smallish {
    max-width: 790px; }
  .container.medium {
    max-width: 936px; }
  .container.no-side-padding {
    padding: 0; }
  .container h2:first-child {
    margin-top: 0; }

@media (min-width: 700px) {
  .main .container {
    max-width: 100%;
    padding: 0 80px; } }
.plain {
  background: #f2f0f2; }

.three-column {
  padding: 0;
  margin: 0;
  display: flex;
  list-style: none;
  flex-wrap: wrap; }
  .three-column li {
    width: 100%; }
    @media (min-width: 700px) {
      .three-column li {
        flex: 1 0 420px; } }

.two-column {
  display: flex; }
  @media (max-width: 1024px) {
    .two-column {
      flex-direction: column; } }
  .two-column .column {
    width: 50%;
    flex: 1; }
    @media (max-width: 1024px) {
      .two-column .column {
        width: 100%; } }

section.alt {
  background: #f2f0f2; }

.right-column {
  width: 50%;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0; }

@media (min-width: 700px) {
  .grid {
    margin: 0 -20px -40px -20px; }
    .grid li {
      margin: 0 20px 40px 20px; } }
.grid {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 65px -10px -20px -10px;
  flex-wrap: wrap;
  justify-content: center; }
  @media (max-width: 700px) {
    .grid {
      flex-direction: column;
      align-items: center; } }
  .grid.grid__link_space li {
    padding: 0 0 3rem 0; }
  .grid li {
    flex: 0 0 auto;
    position: relative;
    margin: 0 10px 20px 10px; }
    .grid li.small {
      width: 297px; }
  .grid img {
    width: 100%; }
  .grid h3 {
    margin-top: 2rem; }
  .grid .grid__title {
    padding-top: 23px; }
    .grid .grid__title a {
      font-family: 'roobert';
      font-size: 20px; }
  .grid .grid__links {
    position: absolute;
    bottom: 0; }
    .grid .grid__links a {
      display: inline-block;
      margin-right: 2rem; }

.hero {
  background: #faf9fa; }
  .hero .container h1:first-child {
    margin-top: 0; }
  .hero .container h3:last-child {
    margin-bottom: 0; }
  .hero.main h3 {
    text-align: left; }

#open-nav {
  align-self: center;
  margin-left: auto;
  display: block;
  width: 82px; }
  #open-nav svg {
    fill: #fff; }
  @media (min-width: 1024px) {
    #open-nav {
      display: none; } }

@media (max-width: 1023px) {
  .nav__container .container2 li a.btn.signup-btn {
    margin-right: 0;
    height: auto;
    padding: 10px 5px; }

  .nav__container .container2 .authed-login {
    display: none; }

  .nav-open .nav__container .nav__links {
    height: auto;
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #9146FF;
    margin-top: 0;
    margin-bottom: 0;
    padding: 0 1.25rem; }
    .nav-open .nav__container .nav__links .search-mobile {
      display: block;
      padding-top: 20px;
      padding-bottom: 20px; }
    .nav-open .nav__container .nav__links a, .nav-open .nav__container .nav__links a.btn, .nav-open .nav__container .nav__links a.btn, .nav-open .nav__container .nav__links a.outline, .nav-open .nav__container .nav__links .authed-login .auth-menu a, .nav-open .nav__container .nav__links a.small-pad {
      display: block;
      text-align: left;
      padding: 10px 5px;
      border: 0;
      background: none;
      box-sizing: border-box;
      color: #fff;
      margin: 0;
      font-size: 0.875rem;
      font-weight: 400;
      line-height: 1.5;
      height: auto; }
      .nav-open .nav__container .nav__links a:hover, .nav-open .nav__container .nav__links a.btn:hover, .nav-open .nav__container .nav__links a.btn:hover, .nav-open .nav__container .nav__links a.outline:hover, .nav-open .nav__container .nav__links .authed-login .auth-menu a:hover, .nav-open .nav__container .nav__links a.small-pad:hover {
        color: #000;
        background: inherit; }
    .nav-open .nav__container .nav__links a.active {
      border-bottom: none; }
    .nav-open .nav__container .nav__links .authed-login img, .nav-open .nav__container .nav__links .authed-login > a {
      display: none; }
    .nav-open .nav__container .nav__links .authed-login span {
      color: #dad8de; }
    .nav-open .nav__container .nav__links .authed-login .auth-menu {
      display: block !important; }
    .nav-open .nav__container .nav__links .authed-login .auth-menu, .nav-open .nav__container .nav__links .authed-login li {
      background: none;
      width: 100%;
      display: block;
      position: relative;
      padding: 0;
      margin: 0; } }
.nav__container {
  background: #9146FF;
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  color: #fff;
  z-index: 10;
  font-size: 1.3rem;
  line-height: 0;
  height: 50px;
  -webkit-backface-visibility: hidden;
  -webkit-transform: translateZ(0); }
  .nav__container a {
    cursor: pointer; }
  .nav__container .right-side {
    margin-left: auto;
    display: flex;
    align-items: center; }
  .nav__container .container2 {
    display: flex; }
    .nav__container .container2 a.btn.signup-btn {
      margin-right: 20px;
      height: 18px;
      box-sizing: content-box;
      font-weight: normal;
      padding: 4px 20px; }
    .nav__container .container2 .profile-image {
      border-radius: 200px;
      overflow: hidden;
      margin: 0 10px 0 0;
      line-height: 0; }
    .nav__container .container2 .online {
      background: #18E17C;
      width: 7px;
      height: 7px;
      position: absolute;
      bottom: 8px;
      right: 10px;
      border-radius: 200px;
      border: 2px solid #9146FF; }
  .nav__container .nav__logo {
    flex: 0;
    display: flex;
    align-items: center;
    font-weight: 500;
    font-size: 1.2rem;
    padding-left: 20px; }
    .nav__container .nav__logo svg, .nav__container .nav__logo svg path {
      height: 32px;
      width: 94px;
      fill: #fff;
      margin-top: 10px;
      margin-bottom: 10px; }
  .nav__container .nav__live-indicator {
    margin-top: -30px; }
  .nav__container .nav__links {
    height: 50px;
    display: none;
    list-style: none;
    padding: 0;
    margin-top: 0;
    margin-bottom: 0;
    height: 50px; }
    .nav__container .nav__links .search-main {
      display: none;
      padding-bottom: 0;
      padding-top: 0; }
    @media (min-width: 1024px) {
      .nav__container .nav__links {
        display: flex;
        align-items: center;
        flex: 1;
        justify-content: flex-end;
        line-height: 1.5;
        font-weight: 400;
        font-size: 14px; }
        .nav__container .nav__links .search-main {
          display: flex;
          margin-top: 0;
          margin-bottom: 0; }
        .nav__container .nav__links li {
          padding: 0px 20px;
          height: 50px; }
          .nav__container .nav__links li.half-pad {
            padding-left: 20px; }
          .nav__container .nav__links li.no-pad {
            padding: 0; }
          .nav__container .nav__links li.quarter-pad {
            padding-left: 10px; }
          .nav__container .nav__links li.half-pad.border {
            padding-top: 0;
            padding-bottom: 0; }
          .nav__container .nav__links li.authed-login.quarter-pad {
            padding-left: 0; }
        .nav__container .nav__links div.quarter-pad {
          padding-left: 10px; }
        .nav__container .nav__links .btn {
          font-size: 11px;
          font-weight: 500;
          line-height: 12px;
          padding: 6px; } }
    .nav__container .nav__links a {
      color: #fff;
      text-decoration: none;
      line-height: 1.5;
      font-weight: 500;
      display: flex;
      align-items: center;
      height: 50px;
      box-sizing: border-box;
      font-size: 16px; }
      .nav__container .nav__links a.active {
        border-bottom: 2px solid #000; }
      .nav__container .nav__links a:hover, .nav__container .nav__links a.active {
        color: #000; }
    .nav__container .nav__links .search-icon-wrapper {
      position: absolute;
      height: 100%;
      z-index: 1;
      display: flex;
      min-width: 1.875rem;
      justify-content: center;
      align-items: center; }
      .nav__container .nav__links .search-icon-wrapper .search-icon {
        height: 20px;
        width: 20px; }
    .nav__container .nav__links .search-icon svg {
      fill: #6e6779; }
  .nav__container .authed-login {
    display: flex;
    display: -webkit-flex;
    /* Safari */
    align-items: center;
    -webkit-align-items: center;
    /* Safari 7.0+ */
    position: relative; }
    .nav__container .authed-login img {
      width: 30px;
      height: 30px;
      line-height: 0; }

.search-main {
  position: relative;
  justify-content: center; }
  .search-main .search-pop {
    display: flex;
    align-items: center;
    position: relative;
    border-radius: 3px; }
    .search-main .search-pop input[type="search"] {
      width: 100%;
      display: block;
      margin: 0;
      height: 1.875rem;
      font-size: 0.75rem;
      border-radius: 4px;
      color: #433f4a;
      line-height: 1.5;
      border: 1px solid #dad8de;
      transition: box-shadow .1s ease-in,border .1s ease-in;
      padding: 0.3125rem 0.625rem 0.3125rem 1.875rem;
      font-weight: 400; }

.search-mobile {
  display: none; }
  .search-mobile input[type="search"] {
    margin: 0;
    width: 100%;
    box-sizing: border-box;
    border-radius: 4px;
    transition: box-shadow .1s ease-in,border .1s ease-in;
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    background: #fff;
    border: 1px solid #dad8de;
    color: #433f4a;
    font-family: inherit;
    font-size: 12px;
    height: 30px;
    line-height: 1.5;
    outline: 0;
    font-weight: 400; }

.maintenance-spacer {
  height: 47px;
  padding: 0; }

.nav-spacer {
  height: 90px;
  padding: 0; }

html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden; }

footer,
section {
  position: relative;
  z-index: 1; }

section {
  padding: 40px 0; }

@media (min-width: 700px) {
  section {
    padding: 80px 0; }
    section#extension-types-section {
      padding-bottom: 10px; } }
a {
  text-decoration: none;
  color: #9146FF;
  transition: all 0.3s ease; }
  a:hover {
    text-decoration: underline; }

hr {
  border-top: 5px solid #9146FF;
  border-image-source: linear-gradient(to right, #3d2fae, #b769d1);
  border-image-slice: 1;
  margin: 0; }

iframe {
  max-width: 100%; }

.subscribe-cta {
  background: #2E293C;
  padding: 30px 0;
  padding-top: 75px;
  padding-bottom: 75px; }
  @media (min-width: 1024px) {
    .subscribe-cta .container {
      display: flex;
      display: -webkit-flex;
      /* Safari */
      flex-wrap: wrap;
      flex-direction: row;
      flex-grow: 0;
      justify-content: space-between; } }
  .subscribe-cta .form__group {
    display: flex;
    flex-direction: column;
    vertical-align: middle; }
    .subscribe-cta .form__group input[type="text"] {
      line-height: 20px;
      border-radius: 5px;
      width: 280px;
      margin-right: 0.5rem;
      color: white;
      border-color: white;
      outline-color: white;
      height: 20px;
      color: black;
      font-size: 16px;
      font-weight: 400;
      line-height: 12px;
      padding: 10px; }
    .subscribe-cta .form__group input[type="submit"] {
      flex: 0;
      height: 26px;
      padding: 0 10px;
      width: 260px;
      color: white;
      border-color: white;
      outline-color: white;
      border-radius: 5px; }
      .subscribe-cta .form__group input[type="submit"]:disabled {
        background: gray; }
  @media (max-width: 1023px) {
    .subscribe-cta .subscribe-cta__right {
      margin-top: 26px; } }
  .subscribe-cta .subscribe__container {
    display: inline-block; }
    .subscribe-cta .subscribe__container h4 {
      color: #fff; }
  .subscribe-cta form h3 {
    color: #fff;
    margin: 0 0 0.7rem 0;
    font-weight: normal;
    display: table; }

.extension-cta {
  background: #9146FF;
  display: flex;
  display: -webkit-flex;
  /* Safari */
  flex-direction: row;
  justify-content: center;
  vertical-align: middle; }
  @media (max-width: 700px) {
    .extension-cta {
      flex-direction: column; } }
  .extension-cta .text-section {
    margin-top: 5px; }
    @media (max-width: 700px) {
      .extension-cta .text-section {
        text-align: center; } }
    @media (min-width: 700px) {
      .extension-cta .text-section {
        margin-left: 98px;
        width: 520px; } }
  .extension-cta .button-margin {
    margin-top: 29px; }

.bright-cta {
  background: #9146FF;
  text-align: center;
  color: #fff;
  padding: 80px 0; }
  .bright-cta::before {
    content: "";
    background: url("/marketing-assets/images/bg.svg");
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-repeat: repeat-x;
    opacity: 0.07;
    background-size: auto 200px; }
  .bright-cta h2,
  .bright-cta p {
    margin: 0 0 1.5rem 0; }
  .bright-cta p {
    font-size: 1.3rem;
    line-height: 1.5em; }

.extensions-101-cta {
  background: #fbfbfe; }
  .extensions-101-cta .extensions-101-cta__video-player {
    margin-bottom: 30px; }

.subscribe-footer {
  display: flex;
  flex-direction: row;
  background: #18181b;
  flex-grow: 0; }
  .subscribe-footer .nav {
    padding: 20px 0;
    flex-direction: row;
    flex-grow: 1;
    flex-basis: min-content;
    align-items: center;
    -webkit-align-items: center;
    /* Safari 7.0+ */
    vertical-align: -webkit-baseline-middle;
    vertical-align: middle; }
    @media (min-width: 1024px) {
      .subscribe-footer .nav {
        display: flex;
        display: -webkit-flex;
        /* Safari */
        padding: 0; } }
    @media (min-width: 1024px) {
      .subscribe-footer .nav.nudge-right {
        margin-left: 100px; } }
    .subscribe-footer .nav a {
      display: flex;
      display: -webkit-flex;
      color: #dad8de;
      font-weight: 400;
      padding-right: 20px;
      font-size: 24px;
      padding: 5px 0; }
      @media (min-width: 1024px) {
        .subscribe-footer .nav a {
          padding: 0 25px 0 0; } }
    .subscribe-footer .nav a:hover {
      color: #fff; }
  .subscribe-footer .social-icons {
    display: flex;
    display: -webkit-flex;
    /* Safari */
    flex-direction: row;
    align-items: center;
    -webkit-align-items: center;
    /* Safari 7.0+ */
    list-style: none;
    padding-top: 40px;
    padding-bottom: 40px;
    margin: 0; }
    @media (max-width: 1023px) {
      .subscribe-footer .social-icons {
        padding-top: 0px;
        padding-bottom: 20px; } }
    .subscribe-footer .social-icons a {
      display: block;
      background: #000;
      margin-left: 10px;
      width: 33px;
      height: 33px;
      display: flex;
      justify-content: center;
      align-items: center; }
      .subscribe-footer .social-icons a:first-child {
        margin-left: 0; }
    .subscribe-footer .social-icons svg {
      width: 20px;
      height: 20px; }
      .subscribe-footer .social-icons svg path {
        fill: #fff; }
    .subscribe-footer .social-icons a:hover svg {
      transition: opacity 0.3s ease;
      opacity: .7; }

.asset-wrap {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background: #2a1f2f;
  overflow: hidden;
  z-index: -1; }
  .asset-wrap div {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transition: opacity 3s, transform 15s linear;
    background-size: cover;
    background-position: center; }
    .asset-wrap div.showing {
      opacity: 1;
      transform: scale(1.2); }
  .asset-wrap .asset-background {
    width: 100%;
    height: 100%;
    object-fit: cover; }
  .asset-wrap.filter::after {
    position: absolute;
    background: #9146FF;
    background-blend-mode: overlay;
    opacity: .6;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    content: ''; }

.text-and-image .image-split {
  display: none; }
.text-and-image .hero-buttons {
  text-align: center; }
@media (min-width: 1185px) {
  .text-and-image {
    display: flex; }
    .text-and-image .text-split {
      flex: 60%; }
      .text-and-image .text-split h1 {
        text-align: left; }
    .text-and-image .image-split {
      display: block;
      flex: 40%;
      margin-bottom: -160px; }
      .text-and-image .image-split .main-asset {
        margin-right: -180px;
        position: relative;
        left: 48px;
        max-width: 585px; }
      .text-and-image .image-split .sub-asset {
        position: relative;
        top: -120px;
        right: 40px;
        display: inline-block; }
        .text-and-image .image-split .sub-asset::before {
          transition: all 0.3s ease;
          background: rgba(0, 0, 0, 0);
          content: '\25B6';
          color: #fff;
          position: absolute;
          left: 0;
          font-size: 50px;
          height: 100%;
          width: 100%;
          display: flex;
          align-items: center;
          justify-content: center; }
        .text-and-image .image-split .sub-asset:hover {
          cursor: pointer; }
          .text-and-image .image-split .sub-asset:hover::before {
            background: rgba(0, 0, 0, 0.4); }
    .text-and-image .hero-buttons {
      text-align: left; } }

.hero-buttons {
  margin-top: 30px; }

.featured-news__with-video {
  margin-bottom: -100px;
  z-index: 2; }
  @media (max-width: 701px) {
    .featured-news__with-video {
      background: #ffffff; } }
.featured-news__without-video {
  background: #fff; }
@media (min-width: 700px) {
  .featured-news.small-box {
    margin: -310px 0 60px 0; } }
.featured-news.small-box li {
  text-align: center;
  border: 8px solid #1900FF;
  border-image-source: linear-gradient(to right, #1900FF, #C86DD7);
  border-image-slice: 1;
  border-radius: 12px; }
.featured-news.small-box p {
  margin: 0;
  font-weight: 200; }
.featured-news ul {
  list-style: none;
  padding: 0;
  margin: -30px 0;
  color: #fff; }
  @media (min-width: 700px) {
    .featured-news ul {
      display: flex;
      margin: 0; } }
  .featured-news ul li {
    flex: 1;
    margin: 30px auto;
    border: 5px solid #1900FF;
    border-image-source: linear-gradient(to right, #1900FF, #C86DD7);
    border-image-slice: 1;
    border-radius: 12px;
    background: #2b2245;
    padding: 30px;
    text-align: left;
    box-sizing: border-box;
    position: relative;
    max-width: 80%; }
    @media (min-width: 700px) {
      .featured-news ul li {
        margin: 0 10px; } }
    .featured-news ul li .news__cta {
      height: 2em;
      pointer-events: none; }
      .featured-news ul li .news__cta a {
        pointer-events: all;
        color: #9d75ec;
        text-decoration: none;
        position: absolute;
        bottom: 37px;
        font-size: .9rem; }
    .featured-news ul li h2 {
      font-size: 1.5rem;
      line-height: 1.9rem; }
    .featured-news ul li h3 {
      margin: 26px 0; }
    .featured-news ul li svg {
      height: 64px; }
      .featured-news ul li svg, .featured-news ul li svg .cls-1, .featured-news ul li svg .cls-2 {
        fill: #9146FF; }
    @media (min-width: 700px) {
      .featured-news ul li:first-child {
        margin-left: 0; }
      .featured-news ul li:last-child {
        margin-right: 0; } }

.explore {
  margin: 0 -20px; }
  .explore li {
    display: flex;
    padding: 80px 20px 0 20px; }
    @media (min-width: 700px) {
      .explore li:nth-child(2), .explore li:first-child {
        padding: 0px 20px; } }
  .explore .explore__image {
    display: flex;
    align-items: center; }
    .explore .explore__image img {
      width: 90px;
      border-radius: 100px;
      border: 3px solid #9146FF; }
  .explore .explore__content {
    padding-left: 1rem; }

.image-text .row {
  margin: 0 -2rem;
  align-items: center; }
.image-text img {
  width: 100%;
  position: relative;
  max-width: 550px; }
.image-text .text, .image-text .image {
  padding: 0 2rem; }
.image-text .image {
  text-align: center;
  position: relative; }
  @media (min-width: 700px) {
    .image-text .image {
      margin: 0 -100px 0 0; } }
  @media (min-width: 700px) {
    .image-text .image:before {
      background-image: url("data:image/svg+xml;charset=UTF-8, %3csvg width='760px' height='600px' viewBox='0 0 760 600' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3e%3cdefs%3e%3clinearGradient x1='0%25' y1='0%25' x2='101.999998%25' y2='100.999999%25' id='linearGradient-1'%3e%3cstop stop-color='%233023AE' offset='0%25'%3e%3c/stop%3e%3cstop stop-color='%23C86DD7' offset='100%25'%3e%3c/stop%3e%3c/linearGradient%3e%3clinearGradient x1='50%25' y1='0%25' x2='50%25' y2='100%25' id='linearGradient-2'%3e%3cstop stop-color='%2361C3FA' offset='0%25'%3e%3c/stop%3e%3cstop stop-color='%23F76B1C' offset='100%25'%3e%3c/stop%3e%3c/linearGradient%3e%3clinearGradient x1='0%25' y1='0%25' x2='101.999998%25' y2='100.999999%25' id='linearGradient-3'%3e%3cstop stop-color='%238578FF' offset='0%25'%3e%3c/stop%3e%3cstop stop-color='%23C86DD7' offset='100%25'%3e%3c/stop%3e%3c/linearGradient%3e%3c/defs%3e%3cg id='Desktop-Designs' stroke='none' stroke-width='1' fill='none' fill-rule='evenodd' opacity='0.368359375'%3e%3cg id='/get-started' transform='translate(-646.000000, -637.000000)'%3e%3cg id='Step-1' transform='translate(192.000000, 637.000000)'%3e%3cg id='Step1-circles' transform='translate(834.000000, 300.000000) rotate(-180.000000) translate(-834.000000, -300.000000) translate(454.000000, 0.000000)'%3e%3cpolygon id='Oval' fill='url(%23linearGradient-1)' opacity='0.502490942' points='380 600 680 300 380 0 80 300'%3e%3c/polygon%3e%3cpolygon id='Oval' fill='url(%23linearGradient-2)' opacity='0.502490942' points='250 550 500 300 250 50 0 300'%3e%3c/polygon%3e%3cpolygon id='Oval' fill='url(%23linearGradient-3)' opacity='0.502490942' points='560 500 760 300 560 100 360 300'%3e%3c/polygon%3e%3c/g%3e%3c/g%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
      content: '';
      position: absolute;
      top: -30%;
      bottom: -30%;
      left: -30%;
      right: -30%;
      background-position: center center;
      background-size: contain;
      background-repeat: no-repeat;
      pointer-events: none; } }
.image-text .row {
  display: block; }
@media (min-width: 700px) {
  .image-text .row {
    display: flex; }
  .image-text section:nth-child(even) .text {
    order: 3; }
  .image-text section:nth-child(even) .image {
    margin: 0 0 0 -100px; } }

.why-twitch ul {
  list-style: none;
  padding: 0;
  margin: -30px 0;
  color: #19171C; }
  @media (min-width: 700px) {
    .why-twitch ul {
      display: flex;
      margin: 0; } }
  @media (max-width: 700px) {
    .why-twitch ul {
      padding-top: 20px; } }
  .why-twitch ul li {
    flex: 1;
    margin: 30px auto;
    background: #ffffff;
    background-clip: padding-box;
    padding: 30px;
    position: relative;
    height: 166px;
    width: 297px;
    max-width: 80%;
    cursor: default;
    box-sizing: border-box;
    border: 2px solid #E2E2E2;
    border-radius: 4px;
    text-align: center; }
    @media (max-width: 700px) {
      .why-twitch ul li {
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 5px; }
        .why-twitch ul li h5 {
          margin-bottom: 0px; } }
    @media (max-width: 320px) {
      .why-twitch ul li {
        max-width: 90%; } }
    @media (min-width: 700px) {
      .why-twitch ul li {
        margin: 0 10px; } }
    .why-twitch ul li h2 {
      color: #000;
      margin: 0 0 10px 0;
      font-size: 42px; }
    .why-twitch ul li h5 {
      font-size: 18px; }
    .why-twitch ul li p {
      color: #382D5B; }
    .why-twitch ul li svg {
      height: 64px; }
      .why-twitch ul li svg, .why-twitch ul li svg .cls-1, .why-twitch ul li svg .cls-2 {
        fill: #9146FF; }
    @media (min-width: 700px) {
      .why-twitch ul li:first-child {
        margin-left: 0; }
      .why-twitch ul li:last-child {
        margin-right: 0; } }
  .why-twitch ul li:hover {
    transition: all 0.3s ease;
    border-image: linear-gradient(#1900ff, #c86dd7) 1 round;
    border-style: solid;
    border-width: 2px;
    border-radius: 3px;
    box-shadow: 0 18px 29px 0 rgba(73, 73, 73, 0.5); }
.why-twitch .learn-more {
  margin-top: 50px; }

.stories {
  padding-bottom: 0px; }
  .stories .learn-more {
    margin-bottom: 56px; }

.story {
  height: 350px;
  width: 297px;
  background: transparent; }
  .story.short {
    height: 290px; }
  .story.auto-height {
    height: auto; }
    .story.auto-height .story__content {
      margin-bottom: 50px; }
  .story.border {
    border: 2px solid #E2E2E2;
    border-radius: 3px;
    margin-bottom: 60px; }
    .story.border .story__content {
      margin-left: 17px;
      margin-right: 17px; }
  .story .story__image {
    width: 100%;
    background: transparent;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
    text-align: center; }
    .story .story__image.svg img {
      width: auto; }
  .story .story__content {
    margin-top: 22px;
    margin-bottom: inherit;
    overflow: hidden;
    text-overflow: ellipsis; }
    .story .story__content.no-links {
      margin-left: 0;
      margin-right: 0; }
    .story .story__content h4 {
      margin-bottom: 0; }
      .story .story__content h4 a {
        color: #000; }
      .story .story__content h4.title-only, .story .story__content h4.title-only a {
        font-size: 18px;
        font-weight: 400;
        line-height: 150%; }
    .story .story__content p {
      font-size: .97rem; }
  .story .story__links {
    position: absolute;
    bottom: 15px;
    font-weight: 700; }

.story.highlight:hover {
  transition: all 0.3s ease;
  border-image: linear-gradient(to bottom right, #1900ff, #c86dd7) 1 round;
  border-style: solid;
  border-width: 2px;
  border-radius: 3px;
  box-shadow: 0 18px 29px 0 rgba(73, 73, 73, 0.5); }

.feature {
  height: 350px;
  width: 297px;
  border: 2px solid transparent;
  border-radius: 3px;
  background-clip: padding-box;
  background-size: contain; }
  .feature h3 {
    text-align: left; }
  .feature .feature__container {
    height: 100%;
    height: -webkit-fill-available;
    height: fill-available; }
  .feature .feature__content {
    padding: 20px 32px 44px;
    text-align: left; }
  .feature .tweet__container {
    background-color: #382D5B; }
  .feature .feature__link {
    position: absolute;
    bottom: 45px; }

.feature:hover {
  border-image: linear-gradient(#1900ff, #c86dd7) 1 round;
  border-style: solid;
  border-width: 2px;
  border-radius: 3px;
  box-shadow: 0 18px 29px 0 rgba(73, 73, 73, 0.5); }

.sock .logos {
  justify-content: space-between;
  flex-wrap: wrap;
  padding-top: 20px; }
  .sock .logos img {
    height: 72px;
    margin: 20px 10px; }

.sandbox {
  justify-content: center;
  text-align: center;
  padding-top: 70px; }
  .sandbox.no-top {
    padding-top: 0px; }
  .sandbox.small-top {
    padding-top: 10px; }
  .sandbox.medium-top {
    padding-top: 35px; }
  .sandbox .next-arrow a, .sandbox .prev-arrow a, .sandbox .sandbox-tab {
    color: #000;
    font-size: 15px;
    font-weight: 600;
    line-height: 17px;
    cursor: pointer; }
  .sandbox a.btn {
    color: white; }
  .sandbox .tabs {
    flex-direction: row;
    justify-content: space-between;
    max-width: 650px;
    margin: 0 auto;
    height: 50px; }
    .sandbox .tabs a {
      text-align: center;
      justify-content: center;
      align-items: center;
      align-content: center;
      padding-bottom: 14px; }
    .sandbox .tabs .active {
      border-bottom: 3px solid #9146FF;
      color: #9146FF; }
  .sandbox .tabcontent {
    display: none;
    flex-direction: row;
    justify-content: space-between;
    height: 500px; }
    .sandbox .tabcontent.active {
      display: flex; }
    .sandbox .tabcontent .tabimage {
      width: 700px; }
      .sandbox .tabcontent .tabimage#extension-types-tabimage {
        margin-left: -50px; }
      .sandbox .tabcontent .tabimage#sandbox-extensions-tabimage img {
        margin-top: 70px;
        width: 700px;
        height: 500px;
        margin-left: -50px; }
      .sandbox .tabcontent .tabimage#sandbox-extensions-tabimage .icon {
        width: 54px;
        height: 54px;
        cursor: pointer; }
      .sandbox .tabcontent .tabimage#sandbox-extensions-tabimage .video {
        position: absolute;
        top: 140px;
        left: 260px; }
      .sandbox .tabcontent .tabimage#sandbox-extensions-tabimage .panel {
        position: absolute;
        top: 270px;
        left: 360px; }
      .sandbox .tabcontent .tabimage#sandbox-extensions-tabimage .chat {
        position: absolute;
        top: 220px;
        left: 550px; }
      .sandbox .tabcontent .tabimage .hidden {
        display: none; }
      .sandbox .tabcontent .tabimage img.single {
        position: relative;
        top: 50%;
        transform: translateY(-50%); }
    .sandbox .tabcontent .imagegrid {
      margin-top: 68px;
      display: flex;
      justify-content: center; }
      .sandbox .tabcontent .imagegrid .imagerow {
        flex-direction: column;
        margin-right: 32px;
        width: 246px; }
        .sandbox .tabcontent .imagegrid .imagerow:last-of-type {
          margin-right: 0px; }
        .sandbox .tabcontent .imagegrid .imagerow img {
          width: 244px;
          height: 192px;
          border: 2px solid transparent;
          transition: all 0.3s ease; }
          .sandbox .tabcontent .imagegrid .imagerow img:first-of-type {
            margin-bottom: 32px; }
          .sandbox .tabcontent .imagegrid .imagerow img:hover {
            cursor: pointer;
            border: 2px solid #ccc; }
          .sandbox .tabcontent .imagegrid .imagerow img.color-border {
            border: 2px solid #1900FF;
            border-image-source: linear-gradient(to right, #1900FF, #C86DD7);
            border-image-slice: 1;
            border-radius: 12px;
            border-radius: 3px;
            box-shadow: 0 0 29px 0 rgba(73, 73, 73, 0.5); }
    .sandbox .tabcontent .tabcarousel {
      margin-top: 68px;
      margin-right: auto;
      margin-left: auto;
      padding: 0px 30px;
      width: 700px; }
      .sandbox .tabcontent .tabcarousel li.prev-arrow {
        padding-top: 250px; }
      .sandbox .tabcontent .tabcarousel li.next-arrow {
        padding-top: 250px; }
    .sandbox .tabcontent .tabtext {
      display: flex;
      flex-direction: column;
      justify-content: center;
      text-align: left;
      width: 300px; }
      .sandbox .tabcontent .tabtext.extension-types {
        height: 400px; }
      .sandbox .tabcontent .tabtext.wide {
        width: 400px; }
      .sandbox .tabcontent .tabtext.hidden {
        display: none; }
      .sandbox .tabcontent .tabtext .btn.big {
        text-align: center;
        padding: 17px;
        width: 85%; }
      .sandbox .tabcontent .tabtext .insights-link {
        margin-top: 20px;
        font-weight: 400; }
      .sandbox .tabcontent .tabtext h3 {
        width: 100%;
        text-align: left;
        margin-bottom: 17px; }
      .sandbox .tabcontent .tabtext p {
        margin-top: 0px;
        margin-bottom: 25px; }

img.uwu-mobile {
  display: block;
  width: 100%;
  margin-bottom: 10px; }

@media (min-width: 1185px) {
  img.uwu-mobile {
    display: none; } }
.footer {
  background: #000;
  padding: 65px 0; }
  @media (min-width: 1024px) {
    .footer .footer__primary {
      display: flex; } }
  .footer .footer__logo {
    flex: 0 0 100px; }
    @media (max-width: 1024px) {
      .footer .footer__logo {
        padding: 0 0 20px 0; } }
    .footer .footer__logo svg {
      width: 48px; }
      .footer .footer__logo svg:hover path {
        transition: all 0.3s ease;
        fill: #9146FF; }
  .footer .footer__links {
    flex: 1; }
    @media (min-width: 1024px) {
      .footer .footer__links {
        display: flex; } }
    .footer .footer__links > div {
      flex: 1; }
      @media (max-width: 1024px) {
        .footer .footer__links > div {
          padding-bottom: 30px; } }
    .footer .footer__links h5 {
      color: #fff;
      font-size: 14px;
      font-weight: 500;
      margin-bottom: 8px; }
    .footer .footer__links a {
      color: #fff;
      font-size: 24px;
      line-height: 36px;
      font-weight: 500;
      transition: all 0.3s ease; }
      .footer .footer__links a:hover {
        color: #9146FF;
        text-decoration: none; }
    .footer .footer__links ul {
      list-style: none;
      padding: 0;
      margin: 0; }
  .footer .footer__bottom {
    font-size: 14px; }
    @media (min-width: 1024px) {
      .footer .footer__bottom {
        padding-top: 65px; } }
    .footer .footer__bottom .links a {
      color: #fff;
      margin-right: 30px;
      font-weight: 400; }
    .footer .footer__bottom .copyright {
      color: #fff; }
    .footer .footer__bottom .container {
      justify-content: space-between; }
      @media (min-width: 1024px) {
        .footer .footer__bottom .container {
          display: flex; } }
      @media (max-width: 1024px) {
        .footer .footer__bottom .container {
          line-height: 200%; } }

.standard-form input[type="text"], .standard-form textarea, .standard-form input[type="search"] {
  margin: 10px; }
.standard-form h5 {
  color: #9146FF;
  margin-bottom: 10px; }
.standard-form .radio-group label {
  font-family: 'roobert';
  font-size: 20px;
  font-weight: 400; }

form {
  margin-bottom: -10px; }

input[type="text"], textarea, input[type="search"] {
  padding: .5rem;
  border: 1px solid rgba(145, 70, 255, 0.3);
  width: 8rem;
  -webkit-appearance: none; }
  input[type="text"]:focus, textarea:focus, input[type="search"]:focus {
    box-shadow: 0 0 3px 1px rgba(145, 70, 255, 0.7);
    border-color: #9146FF;
    outline: none; }
  input[type="text"]::placeholder, textarea::placeholder, input[type="search"]::placeholder {
    color: #9B9B9B; }

input {
  margin-bottom: 10px;
  border-radius: 0; }

textarea {
  height: 220px;
  resize: none;
  margin: 18px 10px; }

input[type="submit"] {
  background: #9146FF;
  color: #fff;
  border: 0;
  border-radius: 3px;
  margin-top: 18px;
  outline: 0;
  padding: 18px 50px;
  cursor: pointer; }
  input[type="submit"]:hover {
    background: #a060ff; }

input, textarea {
  font-size: 16px;
  font-weight: 300; }

.form-row {
  display: flex;
  flex-wrap: wrap; }

.radio-group {
  text-align: left;
  margin: 10px; }
  .radio-group label {
    margin-right: 20px;
    display: inline-block; }
  .radio-group input {
    margin-right: 5px;
    position: relative;
    top: -1px; }

.btn {
  text-decoration: none;
  padding: 8px 13px;
  font-size: 14px;
  font-weight: 500;
  display: inline-block;
  position: relative;
  text-shadow: none;
  background: #9146FF;
  border-radius: 6px;
  color: #fff;
  margin-right: 5px;
  transition: all 0.3s ease; }
  .btn:hover {
    background: #7313ff;
    text-decoration: none; }
  @media (min-width: 1024px) {
    .btn.light {
      background: rgba(255, 255, 255, 0.2); }
      .btn.light:hover {
        color: #fff !important;
        background: rgba(255, 255, 255, 0.1); } }
  .btn.center-btn {
    margin-left: auto;
    margin-right: auto; }
  .btn.secondary {
    background: rgba(0, 0, 0, 0.1);
    color: #000; }
    .btn.secondary:hover {
      background: rgba(0, 0, 0, 0.2); }
  .btn.rounded {
    border-radius: 20px; }
  .btn.tiny {
    padding: 4px 30px;
    font-size: 11px;
    font-weight: 500;
    line-height: 12px; }
  .btn.small-pad {
    padding: .375rem; }

select, textarea, input[type="text"], input[type="password"], input[type="datetime"], input[type="datetime-local"], input[type="date"], input[type="month"], input[type="time"], input[type="week"], input[type="number"], input[type="email"], input[type="url"], input[type="search"], input[type="tel"], input[type="color"] {
  font-size: 16px; }

.highlight .hll {
  background-color: #ffffcc; }

.highlight .c {
  color: #60a0b0;
  font-style: italic; }

/* Comment */
.highlight .k {
  color: #007020;
  font-weight: bold; }

/* Keyword */
.highlight .o {
  color: #666666; }

/* Operator */
.highlight .cm {
  color: #60a0b0;
  font-style: italic; }

/* Comment.Multiline */
.highlight .cp {
  color: #007020; }

/* Comment.Preproc */
.highlight .c1 {
  color: #60a0b0;
  font-style: italic; }

/* Comment.Single */
.highlight .cs {
  color: #60a0b0;
  background-color: #fff0f0; }

/* Comment.Special */
.highlight .gd {
  color: #A00000; }

/* Generic.Deleted */
.highlight .ge {
  font-style: italic; }

/* Generic.Emph */
.highlight .gr {
  color: #FF0000; }

/* Generic.Error */
.highlight .gh {
  color: #000080;
  font-weight: bold; }

/* Generic.Heading */
.highlight .gi {
  color: #00A000; }

/* Generic.Inserted */
.highlight .go {
  color: #808080; }

/* Generic.Output */
.highlight .gp {
  color: #c65d09;
  font-weight: bold; }

/* Generic.Prompt */
.highlight .gs {
  font-weight: bold; }

/* Generic.Strong */
.highlight .gu {
  color: #800080;
  font-weight: bold; }

/* Generic.Subheading */
.highlight .gt {
  color: #0040D0; }

/* Generic.Traceback */
.highlight .kc {
  color: #007020;
  font-weight: bold; }

/* Keyword.Constant */
.highlight .kd {
  color: #007020;
  font-weight: bold; }

/* Keyword.Declaration */
.highlight .kn {
  color: #007020;
  font-weight: bold; }

/* Keyword.Namespace */
.highlight .kp {
  color: #007020; }

/* Keyword.Pseudo */
.highlight .kr {
  color: #007020;
  font-weight: bold; }

/* Keyword.Reserved */
.highlight .kt {
  color: #902000; }

/* Keyword.Type */
.highlight .m {
  color: #40a070; }

/* Literal.Number */
.highlight .s {
  color: #4070a0; }

/* Literal.String */
.highlight .na {
  color: #4070a0; }

/* Name.Attribute */
.highlight .nb {
  color: #007020; }

/* Name.Builtin */
.highlight .nc {
  color: #0e84b5;
  font-weight: bold; }

/* Name.Class */
.highlight .no {
  color: #60add5; }

/* Name.Constant */
.highlight .nd {
  color: #555555;
  font-weight: bold; }

/* Name.Decorator */
.highlight .ni {
  color: #d55537;
  font-weight: bold; }

/* Name.Entity */
.highlight .ne {
  color: #007020; }

/* Name.Exception */
.highlight .nf {
  color: #06287e; }

/* Name.Function */
.highlight .nl {
  color: #002070;
  font-weight: bold; }

/* Name.Label */
.highlight .nn {
  color: #0e84b5;
  font-weight: bold; }

/* Name.Namespace */
.highlight .nt {
  color: #062873;
  font-weight: bold; }

/* Name.Tag */
.highlight .nv {
  color: #bb60d5; }

/* Name.Variable */
.highlight .ow {
  color: #007020;
  font-weight: bold; }

/* Operator.Word */
.highlight .w {
  color: #bbbbbb; }

/* Text.Whitespace */
.highlight .mf {
  color: #40a070; }

/* Literal.Number.Float */
.highlight .mh {
  color: #40a070; }

/* Literal.Number.Hex */
.highlight .mi {
  color: #40a070; }

/* Literal.Number.Integer */
.highlight .mo {
  color: #40a070; }

/* Literal.Number.Oct */
.highlight .sb {
  color: #4070a0; }

/* Literal.String.Backtick */
.highlight .sc {
  color: #4070a0; }

/* Literal.String.Char */
.highlight .sd {
  color: #4070a0;
  font-style: italic; }

/* Literal.String.Doc */
.highlight .s2 {
  color: #4070a0; }

/* Literal.String.Double */
.highlight .se {
  color: #4070a0;
  font-weight: bold; }

/* Literal.String.Escape */
.highlight .sh {
  color: #4070a0; }

/* Literal.String.Heredoc */
.highlight .si {
  color: #70a0d0;
  font-style: italic; }

/* Literal.String.Interpol */
.highlight .sx {
  color: #c65d09; }

/* Literal.String.Other */
.highlight .sr {
  color: #235388; }

/* Literal.String.Regex */
.highlight .s1 {
  color: #4070a0; }

/* Literal.String.Single */
.highlight .ss {
  color: #517918; }

/* Literal.String.Symbol */
.highlight .bp {
  color: #007020; }

/* Name.Builtin.Pseudo */
.highlight .vc {
  color: #bb60d5; }

/* Name.Variable.Class */
.highlight .vg {
  color: #bb60d5; }

/* Name.Variable.Global */
.highlight .vi {
  color: #bb60d5; }

/* Name.Variable.Instance */
.highlight .il {
  color: #40a070; }

/* Literal.Number.Integer.Long */
.showcase .grid__image {
  position: relative; }

.motivate {
  background: #9146FF; }
  .motivate .left-bg, .motivate .right-bg {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 50%;
    z-index: -2;
    filter: brightness(70%);
    background-position: center center;
    background-size: cover; }
  .motivate .left-bg {
    left: 0; }
  .motivate .right-bg {
    right: 0; }
  .motivate:before {
    z-index: -1;
    background: linear-gradient(to right, #3d2fae, #b769d1);
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    content: '';
    opacity: .6; }

.community-icons {
  justify-content: space-between;
  flex-wrap: wrap;
  padding-top: 20px;
  margin: -20px -10px; }
  .community-icons img {
    height: 55px;
    margin: 20px 10px; }
  .community-icons.larger-icons img {
    height: 90px; }

.grow-bg {
  position: relative;
  min-height: 379px;
  padding-bottom: 130%;
  margin-bottom: -250px; }
  @media (min-width: 330px) {
    .grow-bg {
      padding-bottom: 95%;
      margin-bottom: -220px; } }
  @media (min-width: 400px) {
    .grow-bg {
      padding-bottom: 79%;
      margin-bottom: -200px; } }
  @media (min-width: 700px) {
    .grow-bg {
      padding-bottom: 52%;
      margin-bottom: -200px; } }
  @media (min-width: 1200px) {
    .grow-bg {
      padding-bottom: 35%;
      margin-bottom: -130px; } }
  .grow-bg:before {
    content: '';
    position: absolute;
    top: 0;
    left: -200px;
    right: -200px;
    bottom: -10%;
    background: url("/marketing-assets/images/background-images/grow.png");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain; }

.extension-list {
  list-style: none;
  padding: 0;
  margin: 0; }
  @media (min-width: 700px) {
    .extension-list {
      margin: 0; } }
  .extension-list li {
    margin-top: 55px; }
    @media (min-width: 700px) {
      .extension-list li {
        padding: 50px 0;
        display: flex;
        margin-top: 0; } }
  .extension-list .image {
    width: 220px;
    height: 220px;
    background-position: center center;
    background-size: cover;
    flex-shrink: 0;
    margin: 0 auto 40px auto; }
    @media (min-width: 700px) {
      .extension-list .image {
        margin: 0; } }
  .extension-list .text {
    text-align: left;
    padding: 0 0 20px 25px;
    width: 100%;
    position: relative; }
    @media (min-width: 700px) {
      .extension-list .text {
        padding-bottom: 4em; } }
    @media (min-width: 700px) {
      .extension-list .text .info {
        position: absolute;
        bottom: 0;
        left: 25px;
        right: 0;
        display: flex;
        justify-content: space-between;
        box-sizing: border-box; } }
    .extension-list .text .author {
      display: flex;
      margin-bottom: 20px; }
      @media (min-width: 700px) {
        .extension-list .text .author {
          justify-content: center;
          margin: 0; } }
      .extension-list .text .author img {
        width: 60px;
        height: 100%;
        display: inline-block; }
      .extension-list .text .author .links {
        padding-left: 10px;
        display: flex;
        flex-direction: column;
        justify-content: center; }
        .extension-list .text .author .links a {
          padding: 5px 0; }
    .extension-list .text .row {
      display: flex; }
      @media (min-width: 700px) {
        .extension-list .text .row {
          display: flex;
          justify-content: flex-end;
          flex-direction: column; } }
  .extension-list h2 {
    margin-bottom: 10px; }

@media (min-width: 700px) {
  .monetize {
    margin: 80px 0 0 0; } }
.monetize {
  margin: 40px 0 0 0; }
  .monetize img {
    height: 120px;
    width: auto; }

.circle-feature {
  margin: 0 -20px; }
  .circle-feature li {
    display: flex;
    padding: 80px 20px 0 20px; }
  .circle-feature .row {
    align-items: center;
    display: block;
    padding: 80px 20px 0 20px; }
  @media (min-width: 700px) {
    .circle-feature .row {
      display: flex; }
    .circle-feature .row:nth-child(odd) .circle-feature__content {
      order: 3; } }
  .circle-feature .circle-feature__image {
    display: flex;
    align-items: center;
    margin: auto;
    text-align: center;
    width: 50%; }
    .circle-feature .circle-feature__image img {
      box-sizing: border-box;
      height: 307px;
      width: 307px;
      border-radius: 50%;
      border: 5px solid #FFFFFF;
      background-color: #FFFFFF; }
  .circle-feature .circle-feature__content {
    margin: auto;
    padding-left: 1rem;
    width: 50%; }
  @media (max-width: 700px) {
    .circle-feature .circle-feature__image, .circle-feature .circle-feature__content {
      width: auto; } }

.extension-browser .extension-browser__images {
  display: flex; }

.carousel {
  list-style: none;
  margin: 0;
  padding: 0 0 30px 0;
  position: relative; }
  .carousel.with-margin {
    margin-bottom: 90px; }
  .carousel li.force-height {
    position: relative;
    transform: none; }
  .carousel li.prev-arrow {
    left: 0; }
  .carousel li.next-arrow {
    right: 0; }
  .carousel li.prev-arrow, .carousel li.next-arrow {
    color: #9146FF;
    font-size: 7.5rem;
    position: absolute;
    top: 33%;
    transform: translateY(-50%);
    z-index: 9;
    width: auto;
    margin: 0;
    opacity: 1; }
  .carousel li {
    width: 100%;
    max-width: 670px;
    opacity: 0;
    margin: 0 auto;
    position: absolute;
    transition: all 1.5s ease;
    transition-property: opacity, transform;
    transform: scale(0.5); }
    .carousel li .extra-details {
      opacity: 0;
      transition: opacity .3s ease; }
    .carousel li.shown {
      opacity: 1;
      top: 0;
      z-index: 9;
      left: 0;
      right: 0;
      margin: 0 auto;
      transform: none; }
      .carousel li.shown .extra-details {
        opacity: 1; }
      .carousel li.shown .extra-padding {
        padding-top: 45px; }
    .carousel li.prev, .carousel li.next {
      opacity: .6;
      top: 0;
      left: 0;
      right: 0;
      margin: 0 auto;
      pointer-events: none; }
    .carousel li.next {
      transform: translateX(28%) translateY(-4%) scale(0.7); }
    .carousel li.prev {
      transform: translateX(-28%) translateY(-4%) scale(0.7); }

.row {
  display: flex; }

.content {
  background: #fff; }

.content-alternate {
  background: #fbfbfe; }

.content-alternate-2 {
  background: #F4F4FB; }

.weight-1 {
  flex: 1; }

.weight-2 {
  flex: 2; }

.weight-3 {
  flex: 3; }

.no-margin {
  margin: 0; }

.no-padding {
  padding: 0; }

.gradient-bg {
  background: linear-gradient(to right, #3d2fae, #b769d1); }

.fix-inner-margin {
  padding-bottom: 1px; }

.split {
  width: 50%; }

.center-text {
  text-align: center; }

.left-text {
  text-align: left; }

.video-aspect-ratio {
  position: relative;
  padding-top: 56.25%;
  margin-bottom: 30px; }
  .video-aspect-ratio.fill-modal {
    position: unset; }
  .video-aspect-ratio iframe {
    background: #000;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%; }

.cover-image {
  background-size: cover;
  background-position: center center; }

.gradient-border {
  border: 5px solid #1900FF;
  border-image-source: linear-gradient(to right, #1900FF, #C86DD7);
  border-image-slice: 1;
  border-radius: 12px; }

.shadow {
  box-shadow: 8px 12px 0 0 rgba(0, 0, 0, 0.1); }

.screenshot {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 2px;
  margin-left: auto;
  margin-right: auto;
  background: #fafafa url(data:image/svg+xml,%3Csvg%20xmlns=%22http://www.w3.org/2000/svg%22%20width=%2244%22%20height=%2212%22%20viewBox=%220%200%2044%2012%22%3E%3Ccircle%20cx=%226%22%20cy=%226%22%20r=%224%22%20fill=%22#FC625D%22/%3E%3Ccircle%20cx=%2222%22%20cy=%226%22%20r=%224%22%20fill=%22#FDBC40%22/%3E%3Ccircle%20cx=%2238%22%20cy=%226%22%20r=%224%22%20fill=%22#35CC4B%22/%3E%3C/svg%3E) 4px 4px no-repeat;
  position: relative;
  border: 1px solid #f0f0f0;
  box-sizing: border-box;
  padding: 20px 0 0 0; }

.info-box {
  background: rgba(145, 70, 255, 0.1);
  font-style: italic;
  padding: .8rem;
  font-size: .8rem;
  position: relative; }
  @media (min-width: 700px) {
    .info-box {
      padding-left: 4rem; } }
  .info-box::before {
    display: block;
    width: 30px;
    height: 30px;
    position: absolute;
    left: 19px;
    top: 50%;
    transform: translateY(-50%);
    background-repeat: no-repeat;
    background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='utf-8'%3F%3E%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 24 24' style='enable-background:new 0 0 24 24;' xml:space='preserve'%3E%3Cstyle type='text/css'%3E .st0%7Bdisplay:none;%7D .st1%7Bfill:none;%7D .st2%7Bdisplay:inline;%7D .st3%7Bfill:%236441a5;%7D .st4%7Bopacity:0.3;enable-background:new ;%7D%0A%3C/style%3E%3Cg id='Bounding_Boxes'%3E%3Cg id='ui_x5F_spec_x5F_header_copy_3' class='st0'%3E%3C/g%3E%3Cpath class='st1' d='M0,0h24v24H0V0z'/%3E%3C/g%3E%3Cg id='Rounded' class='st0'%3E%3Cg id='ui_x5F_spec_x5F_header_copy_5' class='st2'%3E%3C/g%3E%3Cg class='st2'%3E%3Cpath d='M12,2C6.5,2,2,6.5,2,12s4.5,10,10,10s10-4.5,10-10S17.5,2,12,2z M12,17L12,17c-0.6,0-1-0.5-1-1v-4c0-0.6,0.4-1,1-1l0,0 c0.6,0,1,0.4,1,1v4C13,16.5,12.6,17,12,17z M13,9h-2V7h2V9z'/%3E%3C/g%3E%3C/g%3E%3Cg id='Sharp' class='st0'%3E%3Cg id='ui_x5F_spec_x5F_header_copy_4' class='st2'%3E%3C/g%3E%3Cg class='st2'%3E%3Cpath d='M12,2C6.5,2,2,6.5,2,12s4.5,10,10,10s10-4.5,10-10S17.5,2,12,2z M13,17h-2v-6h2V17z M13,9h-2V7h2V9z'/%3E%3C/g%3E%3C/g%3E%3Cg id='Outline'%3E%3Cg id='ui_x5F_spec_x5F_header' class='st0'%3E%3C/g%3E%3Cg%3E%3Crect x='11' y='7' class='st3' width='2' height='2'/%3E%3Crect x='11' y='11' class='st3' width='2' height='6'/%3E%3Cpath class='st3' d='M12,2C6.5,2,2,6.5,2,12s4.5,10,10,10s10-4.5,10-10S17.5,2,12,2z M12,20c-4.4,0-8-3.6-8-8s3.6-8,8-8s8,3.6,8,8 S16.4,20,12,20z'/%3E%3C/g%3E%3C/g%3E%3Cg id='Duotone' class='st0'%3E%3Cg id='ui_x5F_spec_x5F_header_copy_2' class='st2'%3E%3C/g%3E%3Cg class='st2'%3E%3Cpath class='st4' d='M12,4c-4.4,0-8,3.6-8,8s3.6,8,8,8s8-3.6,8-8S16.4,4,12,4z M13,17h-2v-6h2V17z M13,9h-2V7h2V9z'/%3E%3Crect x='11' y='7' width='2' height='2'/%3E%3Crect x='11' y='11' width='2' height='6'/%3E%3Cpath d='M12,2C6.5,2,2,6.5,2,12s4.5,10,10,10s10-4.5,10-10S17.5,2,12,2z M12,20c-4.4,0-8-3.6-8-8s3.6-8,8-8s8,3.6,8,8 S16.4,20,12,20z'/%3E%3C/g%3E%3C/g%3E%3Cg id='Material' class='st0'%3E%3Cg id='ui_x5F_spec_x5F_header_copy' class='st2'%3E%3C/g%3E%3Cg class='st2'%3E%3Cpath d='M12,2C6.5,2,2,6.5,2,12s4.5,10,10,10s10-4.5,10-10S17.5,2,12,2z M13,17h-2v-6h2V17z M13,9h-2V7h2V9z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E%0A"); }
    @media (min-width: 700px) {
      .info-box::before {
        content: ''; } }

@media (max-width: 700px) {
  .no-mobile {
    visibility: hidden;
    display: none; } }

.modal {
  display: none;
  position: fixed;
  z-index: 100;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4); }
  .modal.open {
    display: block; }
  .modal .start-building-display {
    display: flex;
    flex-direction: row; }
    .modal .start-building-display h3, .modal .start-building-display h5, .modal .start-building-display p, .modal .start-building-display a {
      color: #fff; }
    @media (max-width: 1024px) {
      .modal .start-building-display {
        flex-direction: column; } }
  .modal .start-building-text-display {
    display: flex;
    flex-direction: column; }
    .modal .start-building-text-display .bold-link {
      font-weight: 600; }
  .modal .start-building-image-display {
    text-align: center;
    margin: 1em 0; }
    .modal .start-building-image-display .helper {
      display: inline-block;
      height: 100%;
      vertical-align: middle; }
    .modal .start-building-image-display img {
      width: 180px;
      fill: purple;
      vertical-align: middle; }
      @media (max-width: 1024px) {
        .modal .start-building-image-display img {
          width: 120px;
          margin-bottom: 20px; } }
  .modal .modal-wrap {
    position: relative;
    max-width: 510px;
    border: 6px solid #1900FF;
    border-image-source: linear-gradient(to right, #1900FF, #C86DD7);
    border-image-slice: 1;
    border-radius: 12px;
    padding: 50px 100px;
    background-color: #fff;
    margin: 15% auto; }
    @media (max-width: 1024px) {
      .modal .modal-wrap {
        padding: 30px 20px; } }
    .modal .modal-wrap h1 {
      margin: 0 0 15px 0; }
    .modal .modal-wrap h3 {
      margin: 0 0 20px 0;
      line-height: 38px;
      font-size: 40px; }
    .modal .modal-wrap h5 {
      margin-bottom: 32px; }
    .modal .modal-wrap p {
      margin: 39px 0 0 0; }
  .modal .signup {
    max-width: 610px;
    background-image: url("images/background-images/playground-cta-bg.svg");
    background-size: cover; }
  .modal .form-success img {
    max-height: 60px;
    max-width: 60px; }
  .modal .close, .modal .close-white {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 28px;
    display: inline-block;
    cursor: pointer;
    z-index: 10; }
  .modal .close {
    color: black; }
  .modal .close-white {
    color: white; }
  .modal .close:hover {
    color: #aaa; }

.code__examples {
  border: 1px solid #d0dae0;
  border-radius: 2px; }
  .code__examples .code__primary_links {
    display: flex;
    text-align: center;
    background: #fff; }
    .code__examples .code__primary_links a {
      flex: 1;
      color: #000;
      padding: 12px 0;
      border: 1px solid #ccc;
      border-left: none;
      border-top: none;
      transition: all 0.3s ease;
      padding-bottom: 14px; }
      .code__examples .code__primary_links a.active {
        border-bottom: 3px solid #9146FF;
        padding-bottom: 12px; }
      .code__examples .code__primary_links a:hover {
        color: #9146FF;
        padding-bottom: 13px;
        background: #fcfcfc;
        border-bottom: 2px solid #9146FF;
        box-shadow: 0px 3px 5px -1px rgba(0, 0, 0, 0.1); }
      .code__examples .code__primary_links a:last-child {
        border-right: none; }
  .code__examples .code__example {
    background: #fff;
    padding: 20px;
    display: none; }
    .code__examples .code__example.active {
      display: block; }
    .code__examples .code__example figure {
      padding: 0;
      margin: 0; }
    .code__examples .code__example pre {
      background: #f2f0f2;
      border-radius: 5px;
      margin: 5px 0 20px 0;
      padding: 10px;
      white-space: pre-wrap;
      font-size: 1.1rem;
      line-height: 1.3rem;
      overflow-x: auto; }
    .code__examples .code__example .code__types {
      list-style: none;
      padding: 0;
      margin: 0;
      border-bottom: 1px solid #d0dae0;
      font-size: .9rem;
      margin-bottom: 20px;
      line-height: 0; }
      .code__examples .code__example .code__types li {
        display: inline-block;
        padding: 0 0 10px 0;
        margin: 0 .8rem -1px 0; }
        .code__examples .code__example .code__types li.active {
          border-bottom: 1px solid #9146FF; }
          .code__examples .code__example .code__types li.active a {
            color: #000; }
      .code__examples .code__example .code__types a {
        text-decoration: none;
        padding: .4rem 0;
        display: inline-block;
        color: #9146FF; }
    .code__examples .code__example .code__block {
      list-style: none;
      padding: 0;
      margin: 0; }
      .code__examples .code__example .code__block li {
        display: none; }
        .code__examples .code__example .code__block li.active {
          display: block; }

.tw-channel-live-indicator-container {
  bottom: 0px;
  box-sizing: border-box;
  color: #19171c;
  display: flex;
  height: 21px;
  left: 10px;
  position: relative;
  right: 0px;
  text-decoration: none solid #19171c;
  text-size-adjust: 100%;
  top: 15px;
  width: 100px;
  align-items: center; }

.tw-channel-status-indicator {
  box-sizing: border-box;
  color: #19171c;
  height: 18px;
  min-height: auto;
  min-width: auto;
  text-decoration: none solid #19171c;
  text-size-adjust: 100%;
  width: 18px;
  column-rule-color: #19171c;
  perspective-origin: 9px 9px;
  transform-origin: 9px 9px;
  caret-color: #19171c;
  border: 0px none #19171c;
  font: normal normal 400 normal 12px / 18px "Helvetica Neue", Helvetica, Arial, sans-serif;
  outline: #19171c none 0px;
  padding: 0px 10px 0px 0px;
  align-items: center; }

.tw-channel-status-indicator--pulse {
  bottom: 0px;
  box-sizing: border-box;
  color: #19171c;
  display: inline-block;
  height: 8px;
  left: 0px;
  position: relative;
  right: 0px;
  text-decoration: none solid #19171c;
  text-size-adjust: 100%;
  top: 0px;
  width: 8px;
  column-rule-color: #19171c;
  perspective-origin: 4px 4px;
  transform-origin: 4px 4px;
  caret-color: #19171c;
  background: #ec1313 none repeat scroll 0% 0%/auto padding-box border-box;
  border: 0px none #19171c;
  border-radius: 50% 50% 50% 50%;
  outline: #19171c none 0px;
  align-items: center; }

.tw-channel-status-indicator--pulse:after {
  bottom: 0px;
  color: #19171c;
  content: '';
  display: block;
  height: 8px;
  left: 0px;
  opacity: 0.2;
  position: absolute;
  right: 0px;
  text-decoration: none solid #19171c;
  text-size-adjust: 100%;
  top: 0px;
  width: 8px;
  column-rule-color: #19171c;
  perspective-origin: 4px 4px;
  transform: matrix3d(3.35542, 0, 0, 0, 0, 3.35542, 0, 0, 0, 0, 3.35542, 0, 0, 0, 0, 1);
  transform-origin: 4px 4px;
  caret-color: #19171c;
  animation: tw-channel-status-indicator--pulse 1.5s ease-out 0s infinite normal none running;
  background: #ec1313 none repeat scroll 0% 0%/auto padding-box border-box;
  border: 0px none #19171c;
  border-radius: 50% 50% 50% 50%;
  outline: #19171c none 0px;
  align-items: center; }

.channel-live-keyword {
  box-sizing: border-box;
  color: #FFFFFF;
  height: 21px;
  min-height: auto;
  min-width: auto;
  text-decoration: none solid #19171c;
  text-size-adjust: 100%;
  width: 15.2344px;
  column-rule-color: #19171c;
  perspective-origin: 13.6094px 10.5px;
  transform-origin: 13.6094px 10.5px;
  caret-color: #19171c;
  border: 0px none #19171c;
  font: normal normal normal 14px / 21px "Helvetica Neue", Helvetica, Arial, sans-serif;
  margin: 0px;
  outline: #19171c none 0px; }

@keyframes tw-channel-status-indicator--pulse {
  0% {
    transform: scale3d(1, 1, 1);
    opacity: 0.2; }
  100% {
    transform: scale3d(4, 4, 4);
    opacity: 0; } }
.featured-live-stream {
  margin: 0px -12.5%;
  text-align: center;
  background: none; }
  @media (min-width: 700px) {
    .featured-live-stream {
      margin: -700px 20px -100px 20px;
      z-index: 9; } }
  @media (max-width: 701px) {
    .featured-live-stream {
      background: #ffffff;
      margin-left: 0px;
      margin-right: 0px; }
      .featured-live-stream__frame {
        width: 90%;
        height: 250px; } }

.featured-live-stream-spacer {
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 1; }
  @media (max-width: 701px) {
    .featured-live-stream-spacer {
      padding: 0px; }
      .featured-live-stream-spacer::after, .featured-live-stream-spacer::before {
        content: none !important; } }

.live-stream-player {
  float: left;
  height: 720px;
  width: 80%; }
  @media (max-width: 701px) {
    .live-stream-player {
      height: 250px;
      width: 100%; } }

.live-stream-chat {
  float: right;
  height: 720px;
  width: 20%; }
  @media (max-width: 701px) {
    .live-stream-chat {
      height: 250px;
      width: 0%; } }

.live-block-container {
  padding: 0.1px;
  margin-top: -60px; }

.live-block {
  position: relative;
  bottom: 100px;
  top: 40px; }
  .live-block__heading {
    margin-left: 160px; }
  @media (max-width: 701px) {
    .live-block__heading {
      margin-left: 10px;
      width: auto;
      text-align: center; } }

.stream-description {
  background: #ffffff;
  font: normal normal normal 14px / 21px "Helvetica Neue", Helvetica, Arial, sans-serif; }
  .stream-description h2 {
    text-size-adjust: 100%;
    perspective-origin: 351px 42px;
    transform-origin: 351px 42px;
    font: normal normal 400 normal 17.6px / 28.16px graphik, sans-serif; }
  .stream-description__time {
    margin-bottom: 20px !important; }
  .stream-description__words {
    font: normal normal 400 normal 17.6px / 28.16px graphik, sans-serif; }
  @media (min-width: 700px) {
    .stream-description {
      padding-bottom: 0px; } }

.presenters {
  background: #ffffff; }
  @media (max-width: 701px) {
    .presenters__title {
      margin-top: 0px; } }

.presenters-table {
  margin: -40px 0 0 -20px; }

.watch-now-btn {
  bottom: 0px;
  color: #392d5d;
  display: inline-block;
  height: 15px;
  left: 0px;
  position: relative;
  right: 0px;
  text-decoration: none solid #392d5d;
  top: 10px;
  width: 130.672px;
  column-rule-color: #392d5d;
  perspective-origin: 95.125px 18.0938px;
  transform-origin: 95.125px 18.0938px;
  caret-color: #392d5d;
  border: 1px solid black;
  font: normal normal 400 normal 12.8px / normal graphik, sans-serif;
  margin: 30px 5px 0px 0px;
  outline: #392d5d none 0px; }

.watch-now-btn-wrapper {
  text-align: center; }

.helpful-link-cell {
  margin: 30px 5px 0px 0px; }

.helpful-links {
  margin-top: -120px; }
  @media (min-width: 700px) {
    .helpful-links {
      margin-top: -150px; } }

.extension-rig-btn-group {
  display: flex;
  text-align: center; }

.rig-btn {
  flex: 1; }

.faq dl dt {
  font-size: 30px;
  font-weight: bold;
  line-height: 37px;
  color: #9146FF;
  margin-top: 50px; }
.faq dl dd {
  font-size: 18px;
  line-height: 26px;
  margin-inline-start: 0px; }
  .faq dl dd a {
    font-size: inherit;
    font-weight: 500; }
  .faq dl dd ul {
    list-style: none; }
    .faq dl dd ul h5 {
      font-size: inherit;
      font-weight: 600;
      margin-bottom: 0; }
    .faq dl dd ul p {
      font-size: inherit;
      font-weight: 300;
      margin-top: 0; }

.logos.aws {
  width: 100px; }
  @media (max-width: 700px) {
    .logos.aws {
      width: 60px; } }
.logos.twitch {
  width: 250px; }
  @media (max-width: 700px) {
    .logos.twitch {
      width: 120px; } }

.chapter-tab {
  justify-content: center;
  text-align: center;
  padding-top: 70px; }
  .chapter-tab a {
    width: 243px;
    font-size: 15px;
    font-weight: 600;
    line-height: 17px;
    cursor: pointer; }
  .chapter-tab a.btn {
    color: white; }
  .chapter-tab .tabs {
    display: flex;
    flex-direction: row;
    justify-content: center; }
    .chapter-tab .tabs a {
      text-align: center;
      justify-content: center;
      align-items: center;
      align-content: center;
      border-bottom: 1px solid #9146FF;
      padding-bottom: 14px; }
    .chapter-tab .tabs .active {
      border-bottom: 3px solid #9146FF; }
  .chapter-tab .active {
    display: flex; }

.playbook-content {
  background: #fff;
  padding: 40px 0 !important; }

.playbook-table {
  margin: 0 auto;
  table-layout: auto; }
  .playbook-table th, .playbook-table td {
    padding: 15px;
    text-align: left; }
  .playbook-table td {
    font-weight: 400; }
  .playbook-table th {
    border-bottom: 1px dashed #8D7CBD;
    font-weight: 800; }

.playbook {
  max-width: 900px; }
  .playbook a {
    font-weight: 500;
    font-size: inherit; }
  .playbook .container {
    max-width: 900px; }
    .playbook .container.medium {
      max-width: 720px; }
    .playbook .container.small {
      max-width: 650px; }
  .playbook h2 {
    padding-bottom: 40px; }
  .playbook img {
    max-width: 100%;
    max-height: 100%;
    margin-bottom: 1rem;
    margin-top: 1rem; }

.code_resources {
  display: flex;
  min-width: 100%;
  justify-content: center;
  flex-wrap: wrap; }
  .code_resources div {
    flex-grow: 0;
    padding: 0 0.3rem;
    flex: 0 0 auto; }
  .code_resources .relative {
    position: relative; }
  .code_resources .submission {
    max-width: 17rem;
    margin-bottom: 3rem; }
    .code_resources .submission .outer {
      box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.1), 0 1px 8px -3px rgba(0, 0, 0, 0.02), 0 2px 16px 0 rgba(0, 0, 0, 0.04) !important;
      background-color: #fff;
      border-radius: 6px;
      display: flex;
      flex-direction: column;
      flex-wrap: nowrap; }
    .code_resources .submission .resource-content {
      min-height: 20rem;
      padding: 1rem;
      align-items: center;
      display: flex;
      flex-direction: column;
      text-align: center; }
      .code_resources .submission .resource-content figure {
        margin-block-start: .2em;
        margin-block-end: .2em; }
      .code_resources .submission .resource-content div {
        padding-top: .5rem; }
      .code_resources .submission .resource-content p {
        font-size: .8rem;
        line-height: 1.5;
        margin-block-start: 0;
        margin-block-end: 0; }
        .code_resources .submission .resource-content p.author {
          color: #6e6779; }
      .code_resources .submission .resource-content .tags {
        padding-top: .5rem;
        justify-content: center;
        display: flex;
        flex-wrap: wrap;
        flex-grow: 1;
        flex-direction: row; }
        .code_resources .submission .resource-content .tags .tag {
          display: inline-block;
          padding: 0;
          margin: 0 .2rem .4rem .2rem; }
          .code_resources .submission .resource-content .tags .tag button {
            border-radius: 4px;
            border: 1px solid #dad8de;
            background-color: #faf9fa;
            color: #19171c; }
            .code_resources .submission .resource-content .tags .tag button:hover {
              background-color: #f1eef1;
              cursor: pointer; }
            .code_resources .submission .resource-content .tags .tag button div {
              padding: 0;
              font-size: .7rem; }
            .code_resources .submission .resource-content .tags .tag button > div {
              padding: .3rem 0rem;
              align-items: center;
              display: flex; }


/* --- Force mobile menu to appear top-right --- */
@media (max-width: 1024px) {
  .nav__container.is-open .nav__links,
  .nav-open .nav__container .nav__links {
    left: auto !important;     /* cancel out left:0 */
    right: 0 !important;       /* anchor to right edge */
    /* top: 60px !important;      adjust to your header height */
    width: 220px;              /* optional - keeps it narrow */
    border-radius: 10px;
    text-align: right;
  }
}

