.gutter-grid--cols-1 > * {
  width: calc(99.9999% / 1);
}

.gutter-grid--cols-2 > * {
  width: calc(99.9999% / 2);
}

.gutter-grid--cols-2 > .gutter-grid__cell--span-2 {
  width: calc(2 / 2 * 100%);
}

@media (max-width: 600px) {
  .gutter-grid--cols-2:not(.gutter-grid--noMQs) > *:not([class*="cell--span-"]) {
    width: calc(99.9999% / 1);
  }
}

.gutter-grid--cols-3 > * {
  width: calc(99.9999% / 3);
}

.gutter-grid--cols-3 > .gutter-grid__cell--span-2 {
  width: calc(2 / 3 * 100%);
}

.gutter-grid--cols-3 > .gutter-grid__cell--span-3 {
  width: calc(3 / 3 * 100%);
}

@media (max-width: 960px) {
  .gutter-grid--cols-3:not(.gutter-grid--noMQs) > *:not([class*="cell--span-"]) {
    width: calc(99.9999% / 2);
  }
}

@media (max-width: 600px) {
  .gutter-grid--cols-3:not(.gutter-grid--noMQs) > *:not([class*="cell--span-"]) {
    width: calc(99.9999% / 1);
  }
}

.gutter-grid--cols-4 > * {
  width: calc(99.9999% / 4);
}

.gutter-grid--cols-4 > .gutter-grid__cell--span-2 {
  width: calc(2 / 4 * 100%);
}

.gutter-grid--cols-4 > .gutter-grid__cell--span-3 {
  width: calc(3 / 4 * 100%);
}

.gutter-grid--cols-4 > .gutter-grid__cell--span-4 {
  width: calc(4 / 4 * 100%);
}

@media (max-width: 960px) {
  .gutter-grid--cols-4:not(.gutter-grid--noMQs) > *:not([class*="cell--span-"]) {
    width: calc(99.9999% / 2);
  }
}

@media (max-width: 480px) {
  .gutter-grid--cols-4:not(.gutter-grid--noMQs) > *:not([class*="cell--span-"]) {
    width: calc(99.9999% / 1);
  }
}

.gutter-grid--cols-5 > * {
  width: calc(99.9999% / 5);
}

.gutter-grid--cols-5 > .gutter-grid__cell--span-2 {
  width: calc(2 / 5 * 100%);
}

.gutter-grid--cols-5 > .gutter-grid__cell--span-3 {
  width: calc(3 / 5 * 100%);
}

.gutter-grid--cols-5 > .gutter-grid__cell--span-4 {
  width: calc(4 / 5 * 100%);
}

.gutter-grid--cols-5 > .gutter-grid__cell--span-5 {
  width: calc(5 / 5 * 100%);
}

@media (max-width: 960px) {
  .gutter-grid--cols-5:not(.gutter-grid--noMQs) > *:not([class*="cell--span-"]) {
    width: calc(99.9999% / 3);
  }
}

@media (max-width: 600px) {
  .gutter-grid--cols-5:not(.gutter-grid--noMQs) > *:not([class*="cell--span-"]) {
    width: calc(99.9999% / 2);
  }
}

@media (max-width: 480px) {
  .gutter-grid--cols-5:not(.gutter-grid--noMQs) > *:not([class*="cell--span-"]) {
    width: calc(99.9999% / 1);
  }
}

.gutter-grid--cols-6 > * {
  width: calc(99.9999% / 6);
}

.gutter-grid--cols-6 > .gutter-grid__cell--span-2 {
  width: calc(2 / 6 * 100%);
}

.gutter-grid--cols-6 > .gutter-grid__cell--span-3 {
  width: calc(3 / 6 * 100%);
}

.gutter-grid--cols-6 > .gutter-grid__cell--span-4 {
  width: calc(4 / 6 * 100%);
}

.gutter-grid--cols-6 > .gutter-grid__cell--span-5 {
  width: calc(5 / 6 * 100%);
}

.gutter-grid--cols-6 > .gutter-grid__cell--span-6 {
  width: calc(6 / 6 * 100%);
}

@media (max-width: 960px) {
  .gutter-grid--cols-6:not(.gutter-grid--noMQs) > *:not([class*="cell--span-"]) {
    width: calc(99.9999% / 3);
  }
}

@media (max-width: 600px) {
  .gutter-grid--cols-6:not(.gutter-grid--noMQs) > *:not([class*="cell--span-"]) {
    width: calc(99.9999% / 2);
  }
}

@media (max-width: 480px) {
  .gutter-grid--cols-6:not(.gutter-grid--noMQs) > *:not([class*="cell--span-"]) {
    width: calc(99.9999% / 1);
  }
}

.gutter-grid {
  -gutter-grid-: grid;
  box-sizing: border-box;
  list-style: none;
  margin: 0;
  padding: 0;
  min-width: 100%;
  border: 0 solid transparent;
  display: flex;
  align-content: stretch;
}

.gutter-grid[class*="grid--cols"]:not(.gutter-grid--noWrap) {
  flex-wrap: wrap;
}

.gutter-grid__wrapper {
  padding-bottom: 0.1px;
}

.gutter-grid:not([class*="grid--cols"]):not(.gutter-grid--noStretch):not([class*="grid--align-"]):not([class*="grid--space-"]):not(.gutter-grid--noResize) > .gutter-grid__cell:not(.gutter-grid__cell--noStretch):not(.gutter-grid__cell--noResize) {
  flex-grow: 1;
}

.gutter-grid__cell {
  -gutter-grid-: cell;
  box-sizing: border-box;
  min-width: 0%;
  max-width: 100%;
  display: block;
  padding: 0;
  margin: 0;
  background-clip: padding-box !important;
  border: 0 solid transparent;
}

.gutter-grid__cell[class*="cell--span-"] {
  flex-grow: 1;
}

.gutter-grid__cell.gutter-grid {
  display: flex;
}

.gutter-grid__cell, .gutter-grid__cell * > {
  max-width: 100%;
  flex-shrink: 1;
}

.gutter-grid__inner {
  -gutter-grid-: inner;
  display: block;
  box-sizing: border-box;
}

.gutter-grid--outerGutters {
  margin: 0;
}

.gutter-grid--outerGutters-v {
  margin-top: 0;
  margin-bottom: 0;
}

.gutter-grid--outerGutters-h {
  margin-left: 0;
  margin-right: 0;
}

.gutter-grid--outerGutters-top {
  margin-top: 0;
}

.gutter-grid--outerGutters-bottom {
  margin-bottom: 0;
}

.gutter-grid--outerGutters-left {
  margin-left: 0;
}

.gutter-grid--outerGutters-right {
  margin-right: 0;
}

.gutter-grid--hasInners > * {
  display: flex;
  align-items: stretch;
}

.gutter-grid--hasInners > * > * {
  display: block;
  width: 100%;
}

.gutter-grid--hasInners > * > *.gutter-grid {
  display: flex;
}

.gutter-grid--vAlign-center {
  align-items: center;
}

.gutter-grid--vAlign-top {
  align-items: flex-start;
}

.gutter-grid--vAlign-bottom {
  align-items: flex-end;
}

.gutter-grid--vertical {
  flex-direction: column;
}

.gutter-grid--stretch > * {
  flex-grow: 1;
}

.gutter-grid--noStretch > * {
  flex-grow: 0;
}

.gutter-grid--noShrink > * {
  flex-shrink: 0;
}

.gutter-grid--noResize > * {
  flex-shrink: 0;
  flex-grow: 0;
}

.gutter-grid--mini {
  min-width: 0;
}

@media (max-width: 1200px) {
  .gutter-grid {
    flex-wrap: wrap;
  }
}

.gutter-grid--wrap {
  flex-wrap: wrap;
}

.gutter-grid--noWrap {
  flex-wrap: nowrap;
}

.gutter-grid--space-between > *, .gutter-grid--space-around > * {
  flex-grow: 0;
}

.gutter-grid--space-between {
  justify-content: space-between;
}

.gutter-grid--space-around {
  justify-content: space-around;
}

.gutter-grid--space-evenly {
  justify-content: space-around;
  justify-content: space-evenly;
}

.gutter-grid--align-left > *, .gutter-grid--align-center > *, .gutter-grid--align-right > * {
  flex-grow: 0;
}

.gutter-grid--align-left {
  justify-content: flex-start;
}

.gutter-grid--align-center {
  justify-content: center;
}

.gutter-grid--align-right {
  justify-content: flex-end;
}

.gutter-grid--align-stretch > * {
  flex-grow: 1;
}

.gutter-grid__cell--vAlign-center {
  -ms-grid-row-align: center;
      align-self: center;
}

.gutter-grid__cell--vAlign-top {
  align-self: flex-start;
}

.gutter-grid__cell--vAlign-bottom {
  align-self: flex-end;
}

.gutter-grid__cell--stretch {
  flex-grow: 1;
}

.gutter-grid__cell--noStretch {
  flex-grow: 0;
}

.gutter-grid__cell--noShrink {
  flex-shrink: 0;
}

.gutter-grid__cell--noResize {
  flex-shrink: 0;
  flex-grow: 0;
}

.table-drag__wrapper,
body.drag {
  cursor: move;
}

.table-drag__item,
tr.drag {
  background-color: #fffffe;
}

.table-drag__item-previous,
tr.drag-previous {
  background-color: #fff8e5;
}

.table-drag__handle,
.tabledrag-handle {
  cursor: move;
  float: left;
  height: 1.7em;
  margin-left: -1em;
  overflow: hidden;
  text-decoration: none;
  font-size: 12px;
}

[dir="rtl"] .table-drag__handle,
[dir="rtl"] .tabledrag-handle {
  float: right;
  margin-right: -1em;
  margin-left: 0;
}

.table-drag__handle:focus, .table-drag__handle:hover,
.tabledrag-handle:focus,
.tabledrag-handle:hover {
  text-decoration: none;
}

.table-drag__handle-icon,
.tabledrag-handle .handle {
  box-sizing: content-box;
  background: url(../..//forms/table-drag/handle-icon.png) no-repeat 6px 9px;
  height: 13px;
  margin: -.4em .5em;
  padding: .42em .5em;
  width: 13px;
}

.table-drag__handle.is-hover .table-drag__handle-icon, .table-drag__handle-icon--is-hover, .is-hover.tabledrag-handle .table-drag__handle-icon,
.tabledrag-handle-hover .handle,
.table-drag__handle.is-hover .tabledrag-handle .handle,
.tabledrag-handle .table-drag__handle.is-hover .handle,
.is-hover.tabledrag-handle .handle {
  background-position: 6px -11px;
}

.table-drag__toggle-weight-wrapper,
.tabledrag-toggle-weight-wrapper {
  text-align: right;
}

[dir="rtl"] .table-drag__toggle-weight-wrapper,
[dir="rtl"] .tabledrag-toggle-weight-wrapper {
  text-align: left;
}

.table-drag__toggle-weight,
.tabledrag-toggle-weight {
  font-size: .9em;
}

.table-drag__indentation,
.indentation {
  float: left;
  height: 1.7em;
  margin: -.4em .2em -.4em -.4em;
  padding: .42em 0 .42em .6em;
  width: 20px;
}

[dir="rtl"] .table-drag__indentation,
[dir="rtl"] .indentation {
  float: right;
  margin: -.4em -.4em -.4em .2em;
  padding: .42em .6em .42em 0;
}

.table-drag__tree-child,
.table-drag__tree-child-last,
.tree-child-last,
.table-drag__tree-child-horizontal,
.tree-child-horizontal,
.tree-child {
  background: url(../..//forms/table-drag/tree-child.png) no-repeat 11px center;
}

[dir="rtl"] .table-drag__tree-child,
[dir="rtl"] .table-drag__tree-child-last,
[dir="rtl"] .tree-child-last,
[dir="rtl"] .table-drag__tree-child-horizontal,
[dir="rtl"] .tree-child-horizontal,
[dir="rtl"] .tree-child {
  background-position: -65px center;
}

.table-drag__tree-child-last,
.tree-child-last {
  background-image: url(../..//forms/table-drag/tree-child-last.png);
}

.table-drag__tree-child-horizontal,
.tree-child-horizontal {
  background-position: -11px center;
}

/*# sourceMappingURL=table-drag.css.map */
