.getting-started{
  &-step-link{
    color: inherit;
    text-decoration: none; /* no underline */
  }
  &-spinner {
    display:inline-block;
  }
  &-header{
    text-align:center;
    font-size: 24px;
    font-weight: bold;
  }
  &-linked-icon {
    margin-top: 5px;
    a {
      display: flex;
      flex-direction: row;
      align-items: center;
    }
  }
  &-steps{
    margin-top:20px;
    max-width:800px;
    margin-left: auto;
    margin-right: auto;
    &-step{

      &-is-faded {
        opacity: 0.5;
      }

      display: flex;
      flex-direction: row;
      padding: 15px 0;
      &-header-text{
        display:inline-block;
        margin-left:10px;
        font-weight: bold;
      }
      &-num{
        display:inline-flex;
        justify-content: center;
        align-items: center;
        height:20px;
        width:20px;
        border-radius: 15px;
        color: white;
        font-size: 12px;
        text-align:center;
        background-color: $gray1;
        margin-right: 10px;
      }
      &-content{
        &-heading {
          color: $gray1;
          font-size: 15px;
          font-weight: bold;
        }
        &-code {
          max-width: 1200px;
        }
        max-width: 600px;
        overflow-x: scroll;
        padding: 0 0 0 15px;
        .link {
          color: $blue;
          padding: 10px 0;
          position: relative;
          &-has-icon {
            &:hover {
              svg {
                path, polygon {
                  fill: $green1;
                }
              }
            }
          }
          &-has-icon-mongodb {
            svg {
              width: 30px;
              height: 26px;
            }
          }
          &.active {
            a {
              color: $green1;
              font-weight: 400;
            }
            svg {
              path,polygon {
                fill: $green1;
              }
            }
          }
          a {
            font-size: 15px;
            padding: 0 0 0 6px;
            display: inline-block;
            text-decoration: none;
            color: $gray1;
            &:hover {
              color: $green1;
            }
          }
        }
      }
      &-content-languagepills {
        margin: 5px;
      }
      &-content-code{
        &-heading {
          font-weight: bold;
        }
        &-subheading {
          font-size: 18px;
          padding: 10px;
        }
        max-width: 1200px;
        overflow-x: scroll;
        pre {
          /* TODO find better x-browser solution for tab size. */
          tab-size: 4;
          line-height: 1.8em;
          padding: 5px;
          margin: 5px;
          background-color: lighten($gray7, 50%);
          code {
          }
        }
      }
    }
  }
}
