/** @define Test */

/**
 * The 'describe' CSS counter
 */

.Test {
  counter-reset: test-describe;
}

.Test-describe::before {
  content: counter(test-describe);
  counter-increment: test-describe;
}

/**
 * The 'it' CSS counter
 */

.Test-describe {
  counter-reset: test-it;
}

.Test-it::before {
  content: counter(test-describe) "." counter(test-it);
  counter-increment: test-it;
}

/**
 * The test title
 */

.Test-title {
  background: #eee;
  color: #999;
  font-family: sans-serif;
  font-size: 2em;
  margin: 20px 0;
  padding: 20px;
}

/**
 * The test description and expectation titles
 */

.Test-describe,
.Test-it {
  background: #eee;
  border-left: 5px solid #666;
  color: #666;
  font-family: sans-serif;
  font-weight: bold;
  margin: 20px 0;
  padding: 0.75em 20px;
}

.Test-describe {
  font-size: 1.5em;
  margin: 60px 0 20px;
}

/**
 * The counter styles
 */

.Test-describe::before,
.Test-it::before {
  color: #999;
  display: inline-block;
  margin-right: 10px;
  min-width: 30px;
  text-transform: uppercase;
}

/** @define Arrow */

:root { /* stylelint-disable-line */
}

.Arrow {
  display: inline-block;
  font-size: 16px;
  height: 0.7em;
  overflow: hidden;
  padding: 1px 2px;
  text-align: center;
  width: 1em;
}

.Arrow::before {
  background-color: #fff;
  border: 1px solid transparent;
  border-radius: 0;
  bottom: 100%;
  box-shadow: 0 0 0px transparent;
  box-sizing: border-box;
  content: "";
  display: block;
  margin-top: -2px;
  padding-bottom: 100%;
  position: relative;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  width: 100%;
}

/**
 * Position modifiers.
 * N.B. `Arrow--bottom` is the default
 */

.Arrow--top {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.Arrow--right {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}

.Arrow--bottom {
  -webkit-transform: rotate(0);
          transform: rotate(0);
}

.Arrow--left {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

