@charset "UTF-8";
/*
================================================================
----------------------------------------------------------------

 Agnis CSS Layout Grid

----------------------------------------------------------------
 *
 *
 *
================================================================
*/
/*
================================================================
 グリッドレイアウト
================================================================
*/
.grid {
  /* flex表示により子要素をグリッドレイアウトにします */
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  width: 100%;
  background: transparent;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-align-items: stretch;
  align-items: stretch;
}
.grid.grid--reverse {
  /* 右から埋めていくようにします */
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.grid.grid--center {
  /* 上下を中央揃えにします */
  -webkit-align-items: center;
  align-items: center;
}
.grid.grid--top {
  /* 上下を上揃えにします */
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.grid.grid--bottom {
  /* 上下を下揃えにします */
  -webkit-align-items: flex-end;
  align-items: flex-end;
}
.grid.grid--stretch {
  /* 上下を最大要素にあわせて引き伸ばします */
  -webkit-align-items: stretch;
  align-items: stretch;
}

.grid > * {
  /* グリッド要素サイズを 100% に設定します */
  box-sizing: border-box;
  width: 100% !important;
  background: transparent;
}

.grid > .grid__1 {
  /* グリッド要素サイズを 1 / 12 に設定します */
  width: 8.33333% !important;
}

.grid-width-1 {
  /* 対象をグリッド要素サイズ 1 / 12 に設定します */
  width: 8.33333% !important;
}

.grid > .grid__2 {
  /* グリッド要素サイズを 2 / 12 に設定します */
  width: 16.66667% !important;
}

.grid-width-2 {
  /* 対象をグリッド要素サイズ 2 / 12 に設定します */
  width: 16.66667% !important;
}

.grid > .grid__3 {
  /* グリッド要素サイズを 3 / 12 に設定します */
  width: 25% !important;
}

.grid-width-3 {
  /* 対象をグリッド要素サイズ 3 / 12 に設定します */
  width: 25% !important;
}

.grid > .grid__4 {
  /* グリッド要素サイズを 4 / 12 に設定します */
  width: 33.33333% !important;
}

.grid-width-4 {
  /* 対象をグリッド要素サイズ 4 / 12 に設定します */
  width: 33.33333% !important;
}

.grid > .grid__5 {
  /* グリッド要素サイズを 5 / 12 に設定します */
  width: 41.66667% !important;
}

.grid-width-5 {
  /* 対象をグリッド要素サイズ 5 / 12 に設定します */
  width: 41.66667% !important;
}

.grid > .grid__6 {
  /* グリッド要素サイズを 6 / 12 に設定します */
  width: 50% !important;
}

.grid-width-6 {
  /* 対象をグリッド要素サイズ 6 / 12 に設定します */
  width: 50% !important;
}

.grid > .grid__7 {
  /* グリッド要素サイズを 7 / 12 に設定します */
  width: 58.33333% !important;
}

.grid-width-7 {
  /* 対象をグリッド要素サイズ 7 / 12 に設定します */
  width: 58.33333% !important;
}

.grid > .grid__8 {
  /* グリッド要素サイズを 8 / 12 に設定します */
  width: 66.66667% !important;
}

.grid-width-8 {
  /* 対象をグリッド要素サイズ 8 / 12 に設定します */
  width: 66.66667% !important;
}

.grid > .grid__9 {
  /* グリッド要素サイズを 9 / 12 に設定します */
  width: 75% !important;
}

.grid-width-9 {
  /* 対象をグリッド要素サイズ 9 / 12 に設定します */
  width: 75% !important;
}

.grid > .grid__10 {
  /* グリッド要素サイズを 10 / 12 に設定します */
  width: 83.33333% !important;
}

.grid-width-10 {
  /* 対象をグリッド要素サイズ 10 / 12 に設定します */
  width: 83.33333% !important;
}

.grid > .grid__11 {
  /* グリッド要素サイズを 11 / 12 に設定します */
  width: 91.66667% !important;
}

.grid-width-11 {
  /* 対象をグリッド要素サイズ 11 / 12 に設定します */
  width: 91.66667% !important;
}

.grid > .grid__12 {
  /* グリッド要素サイズを 12 / 12 に設定します */
  width: 100% !important;
}

.grid-width-12 {
  /* 対象をグリッド要素サイズ 12 / 12 に設定します */
  width: 100% !important;
}

@media all and (min-width: 481px) {
  .grid > .grid__1--xs {
    /* xs幅以上のとき グリッド要素サイズを 1 / 12 に設定します */
    width: 8.33333% !important;
  }

  .grid-width-1--xs {
    /* xs幅以上のとき 対象をグリッド要素サイズ 1 / 12 に設定します */
    width: 8.33333% !important;
  }

  .grid > .grid__2--xs {
    /* xs幅以上のとき グリッド要素サイズを 2 / 12 に設定します */
    width: 16.66667% !important;
  }

  .grid-width-2--xs {
    /* xs幅以上のとき 対象をグリッド要素サイズ 2 / 12 に設定します */
    width: 16.66667% !important;
  }

  .grid > .grid__3--xs {
    /* xs幅以上のとき グリッド要素サイズを 3 / 12 に設定します */
    width: 25% !important;
  }

  .grid-width-3--xs {
    /* xs幅以上のとき 対象をグリッド要素サイズ 3 / 12 に設定します */
    width: 25% !important;
  }

  .grid > .grid__4--xs {
    /* xs幅以上のとき グリッド要素サイズを 4 / 12 に設定します */
    width: 33.33333% !important;
  }

  .grid-width-4--xs {
    /* xs幅以上のとき 対象をグリッド要素サイズ 4 / 12 に設定します */
    width: 33.33333% !important;
  }

  .grid > .grid__5--xs {
    /* xs幅以上のとき グリッド要素サイズを 5 / 12 に設定します */
    width: 41.66667% !important;
  }

  .grid-width-5--xs {
    /* xs幅以上のとき 対象をグリッド要素サイズ 5 / 12 に設定します */
    width: 41.66667% !important;
  }

  .grid > .grid__6--xs {
    /* xs幅以上のとき グリッド要素サイズを 6 / 12 に設定します */
    width: 50% !important;
  }

  .grid-width-6--xs {
    /* xs幅以上のとき 対象をグリッド要素サイズ 6 / 12 に設定します */
    width: 50% !important;
  }

  .grid > .grid__7--xs {
    /* xs幅以上のとき グリッド要素サイズを 7 / 12 に設定します */
    width: 58.33333% !important;
  }

  .grid-width-7--xs {
    /* xs幅以上のとき 対象をグリッド要素サイズ 7 / 12 に設定します */
    width: 58.33333% !important;
  }

  .grid > .grid__8--xs {
    /* xs幅以上のとき グリッド要素サイズを 8 / 12 に設定します */
    width: 66.66667% !important;
  }

  .grid-width-8--xs {
    /* xs幅以上のとき 対象をグリッド要素サイズ 8 / 12 に設定します */
    width: 66.66667% !important;
  }

  .grid > .grid__9--xs {
    /* xs幅以上のとき グリッド要素サイズを 9 / 12 に設定します */
    width: 75% !important;
  }

  .grid-width-9--xs {
    /* xs幅以上のとき 対象をグリッド要素サイズ 9 / 12 に設定します */
    width: 75% !important;
  }

  .grid > .grid__10--xs {
    /* xs幅以上のとき グリッド要素サイズを 10 / 12 に設定します */
    width: 83.33333% !important;
  }

  .grid-width-10--xs {
    /* xs幅以上のとき 対象をグリッド要素サイズ 10 / 12 に設定します */
    width: 83.33333% !important;
  }

  .grid > .grid__11--xs {
    /* xs幅以上のとき グリッド要素サイズを 11 / 12 に設定します */
    width: 91.66667% !important;
  }

  .grid-width-11--xs {
    /* xs幅以上のとき 対象をグリッド要素サイズ 11 / 12 に設定します */
    width: 91.66667% !important;
  }

  .grid > .grid__12--xs {
    /* xs幅以上のとき グリッド要素サイズを 12 / 12 に設定します */
    width: 100% !important;
  }

  .grid-width-12--xs {
    /* xs幅以上のとき 対象をグリッド要素サイズ 12 / 12 に設定します */
    width: 100% !important;
  }
}
@media all and (min-width: 768px) {
  .grid > .grid__1--sm {
    /* sm幅以上のとき グリッド要素サイズを 1 / 12 に設定します */
    width: 8.33333% !important;
  }

  .grid-width-1--sm {
    /* sm幅以上のとき 対象をグリッド要素サイズ 1 / 12 に設定します */
    width: 8.33333% !important;
  }

  .grid > .grid__2--sm {
    /* sm幅以上のとき グリッド要素サイズを 2 / 12 に設定します */
    width: 16.66667% !important;
  }

  .grid-width-2--sm {
    /* sm幅以上のとき 対象をグリッド要素サイズ 2 / 12 に設定します */
    width: 16.66667% !important;
  }

  .grid > .grid__3--sm {
    /* sm幅以上のとき グリッド要素サイズを 3 / 12 に設定します */
    width: 25% !important;
  }

  .grid-width-3--sm {
    /* sm幅以上のとき 対象をグリッド要素サイズ 3 / 12 に設定します */
    width: 25% !important;
  }

  .grid > .grid__4--sm {
    /* sm幅以上のとき グリッド要素サイズを 4 / 12 に設定します */
    width: 33.33333% !important;
  }

  .grid-width-4--sm {
    /* sm幅以上のとき 対象をグリッド要素サイズ 4 / 12 に設定します */
    width: 33.33333% !important;
  }

  .grid > .grid__5--sm {
    /* sm幅以上のとき グリッド要素サイズを 5 / 12 に設定します */
    width: 41.66667% !important;
  }

  .grid-width-5--sm {
    /* sm幅以上のとき 対象をグリッド要素サイズ 5 / 12 に設定します */
    width: 41.66667% !important;
  }

  .grid > .grid__6--sm {
    /* sm幅以上のとき グリッド要素サイズを 6 / 12 に設定します */
    width: 50% !important;
  }

  .grid-width-6--sm {
    /* sm幅以上のとき 対象をグリッド要素サイズ 6 / 12 に設定します */
    width: 50% !important;
  }

  .grid > .grid__7--sm {
    /* sm幅以上のとき グリッド要素サイズを 7 / 12 に設定します */
    width: 58.33333% !important;
  }

  .grid-width-7--sm {
    /* sm幅以上のとき 対象をグリッド要素サイズ 7 / 12 に設定します */
    width: 58.33333% !important;
  }

  .grid > .grid__8--sm {
    /* sm幅以上のとき グリッド要素サイズを 8 / 12 に設定します */
    width: 66.66667% !important;
  }

  .grid-width-8--sm {
    /* sm幅以上のとき 対象をグリッド要素サイズ 8 / 12 に設定します */
    width: 66.66667% !important;
  }

  .grid > .grid__9--sm {
    /* sm幅以上のとき グリッド要素サイズを 9 / 12 に設定します */
    width: 75% !important;
  }

  .grid-width-9--sm {
    /* sm幅以上のとき 対象をグリッド要素サイズ 9 / 12 に設定します */
    width: 75% !important;
  }

  .grid > .grid__10--sm {
    /* sm幅以上のとき グリッド要素サイズを 10 / 12 に設定します */
    width: 83.33333% !important;
  }

  .grid-width-10--sm {
    /* sm幅以上のとき 対象をグリッド要素サイズ 10 / 12 に設定します */
    width: 83.33333% !important;
  }

  .grid > .grid__11--sm {
    /* sm幅以上のとき グリッド要素サイズを 11 / 12 に設定します */
    width: 91.66667% !important;
  }

  .grid-width-11--sm {
    /* sm幅以上のとき 対象をグリッド要素サイズ 11 / 12 に設定します */
    width: 91.66667% !important;
  }

  .grid > .grid__12--sm {
    /* sm幅以上のとき グリッド要素サイズを 12 / 12 に設定します */
    width: 100% !important;
  }

  .grid-width-12--sm {
    /* sm幅以上のとき 対象をグリッド要素サイズ 12 / 12 に設定します */
    width: 100% !important;
  }
}
@media all and (min-width: 961px) {
  .grid > .grid__1--md {
    /* md幅以上のとき グリッド要素サイズを 1 / 12 に設定します */
    width: 8.33333% !important;
  }

  .grid-width-1--md {
    /* md幅以上のとき 対象をグリッド要素サイズ 1 / 12 に設定します */
    width: 8.33333% !important;
  }

  .grid > .grid__2--md {
    /* md幅以上のとき グリッド要素サイズを 2 / 12 に設定します */
    width: 16.66667% !important;
  }

  .grid-width-2--md {
    /* md幅以上のとき 対象をグリッド要素サイズ 2 / 12 に設定します */
    width: 16.66667% !important;
  }

  .grid > .grid__3--md {
    /* md幅以上のとき グリッド要素サイズを 3 / 12 に設定します */
    width: 25% !important;
  }

  .grid-width-3--md {
    /* md幅以上のとき 対象をグリッド要素サイズ 3 / 12 に設定します */
    width: 25% !important;
  }

  .grid > .grid__4--md {
    /* md幅以上のとき グリッド要素サイズを 4 / 12 に設定します */
    width: 33.33333% !important;
  }

  .grid-width-4--md {
    /* md幅以上のとき 対象をグリッド要素サイズ 4 / 12 に設定します */
    width: 33.33333% !important;
  }

  .grid > .grid__5--md {
    /* md幅以上のとき グリッド要素サイズを 5 / 12 に設定します */
    width: 41.66667% !important;
  }

  .grid-width-5--md {
    /* md幅以上のとき 対象をグリッド要素サイズ 5 / 12 に設定します */
    width: 41.66667% !important;
  }

  .grid > .grid__6--md {
    /* md幅以上のとき グリッド要素サイズを 6 / 12 に設定します */
    width: 50% !important;
  }

  .grid-width-6--md {
    /* md幅以上のとき 対象をグリッド要素サイズ 6 / 12 に設定します */
    width: 50% !important;
  }

  .grid > .grid__7--md {
    /* md幅以上のとき グリッド要素サイズを 7 / 12 に設定します */
    width: 58.33333% !important;
  }

  .grid-width-7--md {
    /* md幅以上のとき 対象をグリッド要素サイズ 7 / 12 に設定します */
    width: 58.33333% !important;
  }

  .grid > .grid__8--md {
    /* md幅以上のとき グリッド要素サイズを 8 / 12 に設定します */
    width: 66.66667% !important;
  }

  .grid-width-8--md {
    /* md幅以上のとき 対象をグリッド要素サイズ 8 / 12 に設定します */
    width: 66.66667% !important;
  }

  .grid > .grid__9--md {
    /* md幅以上のとき グリッド要素サイズを 9 / 12 に設定します */
    width: 75% !important;
  }

  .grid-width-9--md {
    /* md幅以上のとき 対象をグリッド要素サイズ 9 / 12 に設定します */
    width: 75% !important;
  }

  .grid > .grid__10--md {
    /* md幅以上のとき グリッド要素サイズを 10 / 12 に設定します */
    width: 83.33333% !important;
  }

  .grid-width-10--md {
    /* md幅以上のとき 対象をグリッド要素サイズ 10 / 12 に設定します */
    width: 83.33333% !important;
  }

  .grid > .grid__11--md {
    /* md幅以上のとき グリッド要素サイズを 11 / 12 に設定します */
    width: 91.66667% !important;
  }

  .grid-width-11--md {
    /* md幅以上のとき 対象をグリッド要素サイズ 11 / 12 に設定します */
    width: 91.66667% !important;
  }

  .grid > .grid__12--md {
    /* md幅以上のとき グリッド要素サイズを 12 / 12 に設定します */
    width: 100% !important;
  }

  .grid-width-12--md {
    /* md幅以上のとき 対象をグリッド要素サイズ 12 / 12 に設定します */
    width: 100% !important;
  }
}
@media all and (min-width: 1201px) {
  .grid > .grid__1--lg {
    /* lg幅以上のとき グリッド要素サイズを 1 / 12 に設定します */
    width: 8.33333% !important;
  }

  .grid-width-1--lg {
    /* lg幅以上のとき 対象をグリッド要素サイズ 1 / 12 に設定します */
    width: 8.33333% !important;
  }

  .grid > .grid__2--lg {
    /* lg幅以上のとき グリッド要素サイズを 2 / 12 に設定します */
    width: 16.66667% !important;
  }

  .grid-width-2--lg {
    /* lg幅以上のとき 対象をグリッド要素サイズ 2 / 12 に設定します */
    width: 16.66667% !important;
  }

  .grid > .grid__3--lg {
    /* lg幅以上のとき グリッド要素サイズを 3 / 12 に設定します */
    width: 25% !important;
  }

  .grid-width-3--lg {
    /* lg幅以上のとき 対象をグリッド要素サイズ 3 / 12 に設定します */
    width: 25% !important;
  }

  .grid > .grid__4--lg {
    /* lg幅以上のとき グリッド要素サイズを 4 / 12 に設定します */
    width: 33.33333% !important;
  }

  .grid-width-4--lg {
    /* lg幅以上のとき 対象をグリッド要素サイズ 4 / 12 に設定します */
    width: 33.33333% !important;
  }

  .grid > .grid__5--lg {
    /* lg幅以上のとき グリッド要素サイズを 5 / 12 に設定します */
    width: 41.66667% !important;
  }

  .grid-width-5--lg {
    /* lg幅以上のとき 対象をグリッド要素サイズ 5 / 12 に設定します */
    width: 41.66667% !important;
  }

  .grid > .grid__6--lg {
    /* lg幅以上のとき グリッド要素サイズを 6 / 12 に設定します */
    width: 50% !important;
  }

  .grid-width-6--lg {
    /* lg幅以上のとき 対象をグリッド要素サイズ 6 / 12 に設定します */
    width: 50% !important;
  }

  .grid > .grid__7--lg {
    /* lg幅以上のとき グリッド要素サイズを 7 / 12 に設定します */
    width: 58.33333% !important;
  }

  .grid-width-7--lg {
    /* lg幅以上のとき 対象をグリッド要素サイズ 7 / 12 に設定します */
    width: 58.33333% !important;
  }

  .grid > .grid__8--lg {
    /* lg幅以上のとき グリッド要素サイズを 8 / 12 に設定します */
    width: 66.66667% !important;
  }

  .grid-width-8--lg {
    /* lg幅以上のとき 対象をグリッド要素サイズ 8 / 12 に設定します */
    width: 66.66667% !important;
  }

  .grid > .grid__9--lg {
    /* lg幅以上のとき グリッド要素サイズを 9 / 12 に設定します */
    width: 75% !important;
  }

  .grid-width-9--lg {
    /* lg幅以上のとき 対象をグリッド要素サイズ 9 / 12 に設定します */
    width: 75% !important;
  }

  .grid > .grid__10--lg {
    /* lg幅以上のとき グリッド要素サイズを 10 / 12 に設定します */
    width: 83.33333% !important;
  }

  .grid-width-10--lg {
    /* lg幅以上のとき 対象をグリッド要素サイズ 10 / 12 に設定します */
    width: 83.33333% !important;
  }

  .grid > .grid__11--lg {
    /* lg幅以上のとき グリッド要素サイズを 11 / 12 に設定します */
    width: 91.66667% !important;
  }

  .grid-width-11--lg {
    /* lg幅以上のとき 対象をグリッド要素サイズ 11 / 12 に設定します */
    width: 91.66667% !important;
  }

  .grid > .grid__12--lg {
    /* lg幅以上のとき グリッド要素サイズを 12 / 12 に設定します */
    width: 100% !important;
  }

  .grid-width-12--lg {
    /* lg幅以上のとき 対象をグリッド要素サイズ 12 / 12 に設定します */
    width: 100% !important;
  }
}
@media all and (min-width: 1601px) {
  .grid > .grid__1--xl {
    /* xl幅以上のとき グリッド要素サイズを 1 / 12 に設定します */
    width: 8.33333% !important;
  }

  .grid-width-1--xl {
    /* xl幅以上のとき 対象をグリッド要素サイズ 1 / 12 に設定します */
    width: 8.33333% !important;
  }

  .grid > .grid__2--xl {
    /* xl幅以上のとき グリッド要素サイズを 2 / 12 に設定します */
    width: 16.66667% !important;
  }

  .grid-width-2--xl {
    /* xl幅以上のとき 対象をグリッド要素サイズ 2 / 12 に設定します */
    width: 16.66667% !important;
  }

  .grid > .grid__3--xl {
    /* xl幅以上のとき グリッド要素サイズを 3 / 12 に設定します */
    width: 25% !important;
  }

  .grid-width-3--xl {
    /* xl幅以上のとき 対象をグリッド要素サイズ 3 / 12 に設定します */
    width: 25% !important;
  }

  .grid > .grid__4--xl {
    /* xl幅以上のとき グリッド要素サイズを 4 / 12 に設定します */
    width: 33.33333% !important;
  }

  .grid-width-4--xl {
    /* xl幅以上のとき 対象をグリッド要素サイズ 4 / 12 に設定します */
    width: 33.33333% !important;
  }

  .grid > .grid__5--xl {
    /* xl幅以上のとき グリッド要素サイズを 5 / 12 に設定します */
    width: 41.66667% !important;
  }

  .grid-width-5--xl {
    /* xl幅以上のとき 対象をグリッド要素サイズ 5 / 12 に設定します */
    width: 41.66667% !important;
  }

  .grid > .grid__6--xl {
    /* xl幅以上のとき グリッド要素サイズを 6 / 12 に設定します */
    width: 50% !important;
  }

  .grid-width-6--xl {
    /* xl幅以上のとき 対象をグリッド要素サイズ 6 / 12 に設定します */
    width: 50% !important;
  }

  .grid > .grid__7--xl {
    /* xl幅以上のとき グリッド要素サイズを 7 / 12 に設定します */
    width: 58.33333% !important;
  }

  .grid-width-7--xl {
    /* xl幅以上のとき 対象をグリッド要素サイズ 7 / 12 に設定します */
    width: 58.33333% !important;
  }

  .grid > .grid__8--xl {
    /* xl幅以上のとき グリッド要素サイズを 8 / 12 に設定します */
    width: 66.66667% !important;
  }

  .grid-width-8--xl {
    /* xl幅以上のとき 対象をグリッド要素サイズ 8 / 12 に設定します */
    width: 66.66667% !important;
  }

  .grid > .grid__9--xl {
    /* xl幅以上のとき グリッド要素サイズを 9 / 12 に設定します */
    width: 75% !important;
  }

  .grid-width-9--xl {
    /* xl幅以上のとき 対象をグリッド要素サイズ 9 / 12 に設定します */
    width: 75% !important;
  }

  .grid > .grid__10--xl {
    /* xl幅以上のとき グリッド要素サイズを 10 / 12 に設定します */
    width: 83.33333% !important;
  }

  .grid-width-10--xl {
    /* xl幅以上のとき 対象をグリッド要素サイズ 10 / 12 に設定します */
    width: 83.33333% !important;
  }

  .grid > .grid__11--xl {
    /* xl幅以上のとき グリッド要素サイズを 11 / 12 に設定します */
    width: 91.66667% !important;
  }

  .grid-width-11--xl {
    /* xl幅以上のとき 対象をグリッド要素サイズ 11 / 12 に設定します */
    width: 91.66667% !important;
  }

  .grid > .grid__12--xl {
    /* xl幅以上のとき グリッド要素サイズを 12 / 12 に設定します */
    width: 100% !important;
  }

  .grid-width-12--xl {
    /* xl幅以上のとき 対象をグリッド要素サイズ 12 / 12 に設定します */
    width: 100% !important;
  }
}
/*
================================================================
 グリッドレイアウト（余白付き）
================================================================
*/
.grid.grid--separate {
  margin: 0 -30px -30px 0;
  width: calc(100% + 30px);
}

.grid.grid--separate > * {
  width: calc(100% - 30px) !important;
  margin: 0 30px 30px 0;
}

.grid.grid--separate > .grid__1 {
  width: calc(8.33333% - 30px) !important;
}

.grid-separate-width-1 {
  width: calc(8.33333% - 30px) !important;
}

.grid.grid--separate > .grid__2 {
  width: calc(16.66667% - 30px) !important;
}

.grid-separate-width-2 {
  width: calc(16.66667% - 30px) !important;
}

.grid.grid--separate > .grid__3 {
  width: calc(25% - 30px) !important;
}

.grid-separate-width-3 {
  width: calc(25% - 30px) !important;
}

.grid.grid--separate > .grid__4 {
  width: calc(33.33333% - 30px) !important;
}

.grid-separate-width-4 {
  width: calc(33.33333% - 30px) !important;
}

.grid.grid--separate > .grid__5 {
  width: calc(41.66667% - 30px) !important;
}

.grid-separate-width-5 {
  width: calc(41.66667% - 30px) !important;
}

.grid.grid--separate > .grid__6 {
  width: calc(50% - 30px) !important;
}

.grid-separate-width-6 {
  width: calc(50% - 30px) !important;
}

.grid.grid--separate > .grid__7 {
  width: calc(58.33333% - 30px) !important;
}

.grid-separate-width-7 {
  width: calc(58.33333% - 30px) !important;
}

.grid.grid--separate > .grid__8 {
  width: calc(66.66667% - 30px) !important;
}

.grid-separate-width-8 {
  width: calc(66.66667% - 30px) !important;
}

.grid.grid--separate > .grid__9 {
  width: calc(75% - 30px) !important;
}

.grid-separate-width-9 {
  width: calc(75% - 30px) !important;
}

.grid.grid--separate > .grid__10 {
  width: calc(83.33333% - 30px) !important;
}

.grid-separate-width-10 {
  width: calc(83.33333% - 30px) !important;
}

.grid.grid--separate > .grid__11 {
  width: calc(91.66667% - 30px) !important;
}

.grid-separate-width-11 {
  width: calc(91.66667% - 30px) !important;
}

.grid.grid--separate > .grid__12 {
  width: calc(100% - 30px) !important;
}

.grid-separate-width-12 {
  width: calc(100% - 30px) !important;
}

@media all and (min-width: 481px) {
  .grid.grid--separate {
    margin: 0 -30px -30px 0;
    width: calc(100% + 30px);
  }

  .grid.grid--separate > * {
    width: calc(100% - 30px) !important;
    margin: 0 30px 30px 0;
  }

  .grid.grid--separate > .grid__1 {
    width: calc(8.33333% - 30px) !important;
    margin: 0 30px 30px 0;
  }

  .grid-separate-width-1 {
    width: calc(8.33333% - 30px) !important;
  }

  .grid.grid--separate > .grid__2 {
    width: calc(16.66667% - 30px) !important;
    margin: 0 30px 30px 0;
  }

  .grid-separate-width-2 {
    width: calc(16.66667% - 30px) !important;
  }

  .grid.grid--separate > .grid__3 {
    width: calc(25% - 30px) !important;
    margin: 0 30px 30px 0;
  }

  .grid-separate-width-3 {
    width: calc(25% - 30px) !important;
  }

  .grid.grid--separate > .grid__4 {
    width: calc(33.33333% - 30px) !important;
    margin: 0 30px 30px 0;
  }

  .grid-separate-width-4 {
    width: calc(33.33333% - 30px) !important;
  }

  .grid.grid--separate > .grid__5 {
    width: calc(41.66667% - 30px) !important;
    margin: 0 30px 30px 0;
  }

  .grid-separate-width-5 {
    width: calc(41.66667% - 30px) !important;
  }

  .grid.grid--separate > .grid__6 {
    width: calc(50% - 30px) !important;
    margin: 0 30px 30px 0;
  }

  .grid-separate-width-6 {
    width: calc(50% - 30px) !important;
  }

  .grid.grid--separate > .grid__7 {
    width: calc(58.33333% - 30px) !important;
    margin: 0 30px 30px 0;
  }

  .grid-separate-width-7 {
    width: calc(58.33333% - 30px) !important;
  }

  .grid.grid--separate > .grid__8 {
    width: calc(66.66667% - 30px) !important;
    margin: 0 30px 30px 0;
  }

  .grid-separate-width-8 {
    width: calc(66.66667% - 30px) !important;
  }

  .grid.grid--separate > .grid__9 {
    width: calc(75% - 30px) !important;
    margin: 0 30px 30px 0;
  }

  .grid-separate-width-9 {
    width: calc(75% - 30px) !important;
  }

  .grid.grid--separate > .grid__10 {
    width: calc(83.33333% - 30px) !important;
    margin: 0 30px 30px 0;
  }

  .grid-separate-width-10 {
    width: calc(83.33333% - 30px) !important;
  }

  .grid.grid--separate > .grid__11 {
    width: calc(91.66667% - 30px) !important;
    margin: 0 30px 30px 0;
  }

  .grid-separate-width-11 {
    width: calc(91.66667% - 30px) !important;
  }

  .grid.grid--separate > .grid__12 {
    width: calc(100% - 30px) !important;
    margin: 0 30px 30px 0;
  }

  .grid-separate-width-12 {
    width: calc(100% - 30px) !important;
  }
}
@media all and (min-width: 768px) {
  .grid.grid--separate {
    margin: 0 -40px -40px 0;
    width: calc(100% + 40px);
  }

  .grid.grid--separate > * {
    width: calc(100% - 30px) !important;
    margin: 0 30px 30px 0;
  }

  .grid.grid--separate > .grid__1 {
    width: calc(8.33333% - 40px) !important;
    margin: 0 40px 40px 0;
  }

  .grid-separate-width-1 {
    width: calc(8.33333% - 40px) !important;
  }

  .grid.grid--separate > .grid__2 {
    width: calc(16.66667% - 40px) !important;
    margin: 0 40px 40px 0;
  }

  .grid-separate-width-2 {
    width: calc(16.66667% - 40px) !important;
  }

  .grid.grid--separate > .grid__3 {
    width: calc(25% - 40px) !important;
    margin: 0 40px 40px 0;
  }

  .grid-separate-width-3 {
    width: calc(25% - 40px) !important;
  }

  .grid.grid--separate > .grid__4 {
    width: calc(33.33333% - 40px) !important;
    margin: 0 40px 40px 0;
  }

  .grid-separate-width-4 {
    width: calc(33.33333% - 40px) !important;
  }

  .grid.grid--separate > .grid__5 {
    width: calc(41.66667% - 40px) !important;
    margin: 0 40px 40px 0;
  }

  .grid-separate-width-5 {
    width: calc(41.66667% - 40px) !important;
  }

  .grid.grid--separate > .grid__6 {
    width: calc(50% - 40px) !important;
    margin: 0 40px 40px 0;
  }

  .grid-separate-width-6 {
    width: calc(50% - 40px) !important;
  }

  .grid.grid--separate > .grid__7 {
    width: calc(58.33333% - 40px) !important;
    margin: 0 40px 40px 0;
  }

  .grid-separate-width-7 {
    width: calc(58.33333% - 40px) !important;
  }

  .grid.grid--separate > .grid__8 {
    width: calc(66.66667% - 40px) !important;
    margin: 0 40px 40px 0;
  }

  .grid-separate-width-8 {
    width: calc(66.66667% - 40px) !important;
  }

  .grid.grid--separate > .grid__9 {
    width: calc(75% - 40px) !important;
    margin: 0 40px 40px 0;
  }

  .grid-separate-width-9 {
    width: calc(75% - 40px) !important;
  }

  .grid.grid--separate > .grid__10 {
    width: calc(83.33333% - 40px) !important;
    margin: 0 40px 40px 0;
  }

  .grid-separate-width-10 {
    width: calc(83.33333% - 40px) !important;
  }

  .grid.grid--separate > .grid__11 {
    width: calc(91.66667% - 40px) !important;
    margin: 0 40px 40px 0;
  }

  .grid-separate-width-11 {
    width: calc(91.66667% - 40px) !important;
  }

  .grid.grid--separate > .grid__12 {
    width: calc(100% - 40px) !important;
    margin: 0 40px 40px 0;
  }

  .grid-separate-width-12 {
    width: calc(100% - 40px) !important;
  }
}
@media all and (min-width: 961px) {
  .grid.grid--separate {
    margin: 0 -40px -40px 0;
    width: calc(100% + 40px);
  }

  .grid.grid--separate > * {
    width: calc(100% - 30px) !important;
    margin: 0 30px 30px 0;
  }

  .grid.grid--separate > .grid__1 {
    width: calc(8.33333% - 40px) !important;
    margin: 0 40px 40px 0;
  }

  .grid-separate-width-1 {
    width: calc(8.33333% - 40px) !important;
  }

  .grid.grid--separate > .grid__2 {
    width: calc(16.66667% - 40px) !important;
    margin: 0 40px 40px 0;
  }

  .grid-separate-width-2 {
    width: calc(16.66667% - 40px) !important;
  }

  .grid.grid--separate > .grid__3 {
    width: calc(25% - 40px) !important;
    margin: 0 40px 40px 0;
  }

  .grid-separate-width-3 {
    width: calc(25% - 40px) !important;
  }

  .grid.grid--separate > .grid__4 {
    width: calc(33.33333% - 40px) !important;
    margin: 0 40px 40px 0;
  }

  .grid-separate-width-4 {
    width: calc(33.33333% - 40px) !important;
  }

  .grid.grid--separate > .grid__5 {
    width: calc(41.66667% - 40px) !important;
    margin: 0 40px 40px 0;
  }

  .grid-separate-width-5 {
    width: calc(41.66667% - 40px) !important;
  }

  .grid.grid--separate > .grid__6 {
    width: calc(50% - 40px) !important;
    margin: 0 40px 40px 0;
  }

  .grid-separate-width-6 {
    width: calc(50% - 40px) !important;
  }

  .grid.grid--separate > .grid__7 {
    width: calc(58.33333% - 40px) !important;
    margin: 0 40px 40px 0;
  }

  .grid-separate-width-7 {
    width: calc(58.33333% - 40px) !important;
  }

  .grid.grid--separate > .grid__8 {
    width: calc(66.66667% - 40px) !important;
    margin: 0 40px 40px 0;
  }

  .grid-separate-width-8 {
    width: calc(66.66667% - 40px) !important;
  }

  .grid.grid--separate > .grid__9 {
    width: calc(75% - 40px) !important;
    margin: 0 40px 40px 0;
  }

  .grid-separate-width-9 {
    width: calc(75% - 40px) !important;
  }

  .grid.grid--separate > .grid__10 {
    width: calc(83.33333% - 40px) !important;
    margin: 0 40px 40px 0;
  }

  .grid-separate-width-10 {
    width: calc(83.33333% - 40px) !important;
  }

  .grid.grid--separate > .grid__11 {
    width: calc(91.66667% - 40px) !important;
    margin: 0 40px 40px 0;
  }

  .grid-separate-width-11 {
    width: calc(91.66667% - 40px) !important;
  }

  .grid.grid--separate > .grid__12 {
    width: calc(100% - 40px) !important;
    margin: 0 40px 40px 0;
  }

  .grid-separate-width-12 {
    width: calc(100% - 40px) !important;
  }
}
@media all and (min-width: 1201px) {
  .grid.grid--separate {
    margin: 0 -50px -50px 0;
    width: calc(100% + 50px);
  }

  .grid.grid--separate > * {
    width: calc(100% - 30px) !important;
    margin: 0 30px 30px 0;
  }

  .grid.grid--separate > .grid__1 {
    width: calc(8.33333% - 50px) !important;
    margin: 0 50px 50px 0;
  }

  .grid-separate-width-1 {
    width: calc(8.33333% - 50px) !important;
  }

  .grid.grid--separate > .grid__2 {
    width: calc(16.66667% - 50px) !important;
    margin: 0 50px 50px 0;
  }

  .grid-separate-width-2 {
    width: calc(16.66667% - 50px) !important;
  }

  .grid.grid--separate > .grid__3 {
    width: calc(25% - 50px) !important;
    margin: 0 50px 50px 0;
  }

  .grid-separate-width-3 {
    width: calc(25% - 50px) !important;
  }

  .grid.grid--separate > .grid__4 {
    width: calc(33.33333% - 50px) !important;
    margin: 0 50px 50px 0;
  }

  .grid-separate-width-4 {
    width: calc(33.33333% - 50px) !important;
  }

  .grid.grid--separate > .grid__5 {
    width: calc(41.66667% - 50px) !important;
    margin: 0 50px 50px 0;
  }

  .grid-separate-width-5 {
    width: calc(41.66667% - 50px) !important;
  }

  .grid.grid--separate > .grid__6 {
    width: calc(50% - 50px) !important;
    margin: 0 50px 50px 0;
  }

  .grid-separate-width-6 {
    width: calc(50% - 50px) !important;
  }

  .grid.grid--separate > .grid__7 {
    width: calc(58.33333% - 50px) !important;
    margin: 0 50px 50px 0;
  }

  .grid-separate-width-7 {
    width: calc(58.33333% - 50px) !important;
  }

  .grid.grid--separate > .grid__8 {
    width: calc(66.66667% - 50px) !important;
    margin: 0 50px 50px 0;
  }

  .grid-separate-width-8 {
    width: calc(66.66667% - 50px) !important;
  }

  .grid.grid--separate > .grid__9 {
    width: calc(75% - 50px) !important;
    margin: 0 50px 50px 0;
  }

  .grid-separate-width-9 {
    width: calc(75% - 50px) !important;
  }

  .grid.grid--separate > .grid__10 {
    width: calc(83.33333% - 50px) !important;
    margin: 0 50px 50px 0;
  }

  .grid-separate-width-10 {
    width: calc(83.33333% - 50px) !important;
  }

  .grid.grid--separate > .grid__11 {
    width: calc(91.66667% - 50px) !important;
    margin: 0 50px 50px 0;
  }

  .grid-separate-width-11 {
    width: calc(91.66667% - 50px) !important;
  }

  .grid.grid--separate > .grid__12 {
    width: calc(100% - 50px) !important;
    margin: 0 50px 50px 0;
  }

  .grid-separate-width-12 {
    width: calc(100% - 50px) !important;
  }
}
@media all and (min-width: 1601px) {
  .grid.grid--separate {
    margin: 0 -50px -50px 0;
    width: calc(100% + 50px);
  }

  .grid.grid--separate > * {
    width: calc(100% - 30px) !important;
    margin: 0 30px 30px 0;
  }

  .grid.grid--separate > .grid__1 {
    width: calc(8.33333% - 50px) !important;
    margin: 0 50px 50px 0;
  }

  .grid-separate-width-1 {
    width: calc(8.33333% - 50px) !important;
  }

  .grid.grid--separate > .grid__2 {
    width: calc(16.66667% - 50px) !important;
    margin: 0 50px 50px 0;
  }

  .grid-separate-width-2 {
    width: calc(16.66667% - 50px) !important;
  }

  .grid.grid--separate > .grid__3 {
    width: calc(25% - 50px) !important;
    margin: 0 50px 50px 0;
  }

  .grid-separate-width-3 {
    width: calc(25% - 50px) !important;
  }

  .grid.grid--separate > .grid__4 {
    width: calc(33.33333% - 50px) !important;
    margin: 0 50px 50px 0;
  }

  .grid-separate-width-4 {
    width: calc(33.33333% - 50px) !important;
  }

  .grid.grid--separate > .grid__5 {
    width: calc(41.66667% - 50px) !important;
    margin: 0 50px 50px 0;
  }

  .grid-separate-width-5 {
    width: calc(41.66667% - 50px) !important;
  }

  .grid.grid--separate > .grid__6 {
    width: calc(50% - 50px) !important;
    margin: 0 50px 50px 0;
  }

  .grid-separate-width-6 {
    width: calc(50% - 50px) !important;
  }

  .grid.grid--separate > .grid__7 {
    width: calc(58.33333% - 50px) !important;
    margin: 0 50px 50px 0;
  }

  .grid-separate-width-7 {
    width: calc(58.33333% - 50px) !important;
  }

  .grid.grid--separate > .grid__8 {
    width: calc(66.66667% - 50px) !important;
    margin: 0 50px 50px 0;
  }

  .grid-separate-width-8 {
    width: calc(66.66667% - 50px) !important;
  }

  .grid.grid--separate > .grid__9 {
    width: calc(75% - 50px) !important;
    margin: 0 50px 50px 0;
  }

  .grid-separate-width-9 {
    width: calc(75% - 50px) !important;
  }

  .grid.grid--separate > .grid__10 {
    width: calc(83.33333% - 50px) !important;
    margin: 0 50px 50px 0;
  }

  .grid-separate-width-10 {
    width: calc(83.33333% - 50px) !important;
  }

  .grid.grid--separate > .grid__11 {
    width: calc(91.66667% - 50px) !important;
    margin: 0 50px 50px 0;
  }

  .grid-separate-width-11 {
    width: calc(91.66667% - 50px) !important;
  }

  .grid.grid--separate > .grid__12 {
    width: calc(100% - 50px) !important;
    margin: 0 50px 50px 0;
  }

  .grid-separate-width-12 {
    width: calc(100% - 50px) !important;
  }
}
@media all and (min-width: 481px) {
  .grid.grid--separate > .grid__1--xs {
    width: calc(8.33333% - 30px) !important;
  }

  .grid-separate-width-1--xs {
    width: calc(8.33333% - 30px) !important;
  }

  .grid.grid--separate > .grid__2--xs {
    width: calc(16.66667% - 30px) !important;
  }

  .grid-separate-width-2--xs {
    width: calc(16.66667% - 30px) !important;
  }

  .grid.grid--separate > .grid__3--xs {
    width: calc(25% - 30px) !important;
  }

  .grid-separate-width-3--xs {
    width: calc(25% - 30px) !important;
  }

  .grid.grid--separate > .grid__4--xs {
    width: calc(33.33333% - 30px) !important;
  }

  .grid-separate-width-4--xs {
    width: calc(33.33333% - 30px) !important;
  }

  .grid.grid--separate > .grid__5--xs {
    width: calc(41.66667% - 30px) !important;
  }

  .grid-separate-width-5--xs {
    width: calc(41.66667% - 30px) !important;
  }

  .grid.grid--separate > .grid__6--xs {
    width: calc(50% - 30px) !important;
  }

  .grid-separate-width-6--xs {
    width: calc(50% - 30px) !important;
  }

  .grid.grid--separate > .grid__7--xs {
    width: calc(58.33333% - 30px) !important;
  }

  .grid-separate-width-7--xs {
    width: calc(58.33333% - 30px) !important;
  }

  .grid.grid--separate > .grid__8--xs {
    width: calc(66.66667% - 30px) !important;
  }

  .grid-separate-width-8--xs {
    width: calc(66.66667% - 30px) !important;
  }

  .grid.grid--separate > .grid__9--xs {
    width: calc(75% - 30px) !important;
  }

  .grid-separate-width-9--xs {
    width: calc(75% - 30px) !important;
  }

  .grid.grid--separate > .grid__10--xs {
    width: calc(83.33333% - 30px) !important;
  }

  .grid-separate-width-10--xs {
    width: calc(83.33333% - 30px) !important;
  }

  .grid.grid--separate > .grid__11--xs {
    width: calc(91.66667% - 30px) !important;
  }

  .grid-separate-width-11--xs {
    width: calc(91.66667% - 30px) !important;
  }

  .grid.grid--separate > .grid__12--xs {
    width: calc(100% - 30px) !important;
  }

  .grid-separate-width-12--xs {
    width: calc(100% - 30px) !important;
  }
}
@media all and (min-width: 768px) {
  .grid.grid--separate > .grid__1--xs {
    width: calc(8.33333% - 40px) !important;
  }

  .grid-separate-width-1--xs {
    width: calc(8.33333% - 40px) !important;
  }

  .grid.grid--separate > .grid__2--xs {
    width: calc(16.66667% - 40px) !important;
  }

  .grid-separate-width-2--xs {
    width: calc(16.66667% - 40px) !important;
  }

  .grid.grid--separate > .grid__3--xs {
    width: calc(25% - 40px) !important;
  }

  .grid-separate-width-3--xs {
    width: calc(25% - 40px) !important;
  }

  .grid.grid--separate > .grid__4--xs {
    width: calc(33.33333% - 40px) !important;
  }

  .grid-separate-width-4--xs {
    width: calc(33.33333% - 40px) !important;
  }

  .grid.grid--separate > .grid__5--xs {
    width: calc(41.66667% - 40px) !important;
  }

  .grid-separate-width-5--xs {
    width: calc(41.66667% - 40px) !important;
  }

  .grid.grid--separate > .grid__6--xs {
    width: calc(50% - 40px) !important;
  }

  .grid-separate-width-6--xs {
    width: calc(50% - 40px) !important;
  }

  .grid.grid--separate > .grid__7--xs {
    width: calc(58.33333% - 40px) !important;
  }

  .grid-separate-width-7--xs {
    width: calc(58.33333% - 40px) !important;
  }

  .grid.grid--separate > .grid__8--xs {
    width: calc(66.66667% - 40px) !important;
  }

  .grid-separate-width-8--xs {
    width: calc(66.66667% - 40px) !important;
  }

  .grid.grid--separate > .grid__9--xs {
    width: calc(75% - 40px) !important;
  }

  .grid-separate-width-9--xs {
    width: calc(75% - 40px) !important;
  }

  .grid.grid--separate > .grid__10--xs {
    width: calc(83.33333% - 40px) !important;
  }

  .grid-separate-width-10--xs {
    width: calc(83.33333% - 40px) !important;
  }

  .grid.grid--separate > .grid__11--xs {
    width: calc(91.66667% - 40px) !important;
  }

  .grid-separate-width-11--xs {
    width: calc(91.66667% - 40px) !important;
  }

  .grid.grid--separate > .grid__12--xs {
    width: calc(100% - 40px) !important;
  }

  .grid-separate-width-12--xs {
    width: calc(100% - 40px) !important;
  }
}
@media all and (min-width: 961px) {
  .grid.grid--separate > .grid__1--xs {
    width: calc(8.33333% - 40px) !important;
  }

  .grid-separate-width-1--xs {
    width: calc(8.33333% - 40px) !important;
  }

  .grid.grid--separate > .grid__2--xs {
    width: calc(16.66667% - 40px) !important;
  }

  .grid-separate-width-2--xs {
    width: calc(16.66667% - 40px) !important;
  }

  .grid.grid--separate > .grid__3--xs {
    width: calc(25% - 40px) !important;
  }

  .grid-separate-width-3--xs {
    width: calc(25% - 40px) !important;
  }

  .grid.grid--separate > .grid__4--xs {
    width: calc(33.33333% - 40px) !important;
  }

  .grid-separate-width-4--xs {
    width: calc(33.33333% - 40px) !important;
  }

  .grid.grid--separate > .grid__5--xs {
    width: calc(41.66667% - 40px) !important;
  }

  .grid-separate-width-5--xs {
    width: calc(41.66667% - 40px) !important;
  }

  .grid.grid--separate > .grid__6--xs {
    width: calc(50% - 40px) !important;
  }

  .grid-separate-width-6--xs {
    width: calc(50% - 40px) !important;
  }

  .grid.grid--separate > .grid__7--xs {
    width: calc(58.33333% - 40px) !important;
  }

  .grid-separate-width-7--xs {
    width: calc(58.33333% - 40px) !important;
  }

  .grid.grid--separate > .grid__8--xs {
    width: calc(66.66667% - 40px) !important;
  }

  .grid-separate-width-8--xs {
    width: calc(66.66667% - 40px) !important;
  }

  .grid.grid--separate > .grid__9--xs {
    width: calc(75% - 40px) !important;
  }

  .grid-separate-width-9--xs {
    width: calc(75% - 40px) !important;
  }

  .grid.grid--separate > .grid__10--xs {
    width: calc(83.33333% - 40px) !important;
  }

  .grid-separate-width-10--xs {
    width: calc(83.33333% - 40px) !important;
  }

  .grid.grid--separate > .grid__11--xs {
    width: calc(91.66667% - 40px) !important;
  }

  .grid-separate-width-11--xs {
    width: calc(91.66667% - 40px) !important;
  }

  .grid.grid--separate > .grid__12--xs {
    width: calc(100% - 40px) !important;
  }

  .grid-separate-width-12--xs {
    width: calc(100% - 40px) !important;
  }
}
@media all and (min-width: 1201px) {
  .grid.grid--separate > .grid__1--xs {
    width: calc(8.33333% - 50px) !important;
  }

  .grid-separate-width-1--xs {
    width: calc(8.33333% - 50px) !important;
  }

  .grid.grid--separate > .grid__2--xs {
    width: calc(16.66667% - 50px) !important;
  }

  .grid-separate-width-2--xs {
    width: calc(16.66667% - 50px) !important;
  }

  .grid.grid--separate > .grid__3--xs {
    width: calc(25% - 50px) !important;
  }

  .grid-separate-width-3--xs {
    width: calc(25% - 50px) !important;
  }

  .grid.grid--separate > .grid__4--xs {
    width: calc(33.33333% - 50px) !important;
  }

  .grid-separate-width-4--xs {
    width: calc(33.33333% - 50px) !important;
  }

  .grid.grid--separate > .grid__5--xs {
    width: calc(41.66667% - 50px) !important;
  }

  .grid-separate-width-5--xs {
    width: calc(41.66667% - 50px) !important;
  }

  .grid.grid--separate > .grid__6--xs {
    width: calc(50% - 50px) !important;
  }

  .grid-separate-width-6--xs {
    width: calc(50% - 50px) !important;
  }

  .grid.grid--separate > .grid__7--xs {
    width: calc(58.33333% - 50px) !important;
  }

  .grid-separate-width-7--xs {
    width: calc(58.33333% - 50px) !important;
  }

  .grid.grid--separate > .grid__8--xs {
    width: calc(66.66667% - 50px) !important;
  }

  .grid-separate-width-8--xs {
    width: calc(66.66667% - 50px) !important;
  }

  .grid.grid--separate > .grid__9--xs {
    width: calc(75% - 50px) !important;
  }

  .grid-separate-width-9--xs {
    width: calc(75% - 50px) !important;
  }

  .grid.grid--separate > .grid__10--xs {
    width: calc(83.33333% - 50px) !important;
  }

  .grid-separate-width-10--xs {
    width: calc(83.33333% - 50px) !important;
  }

  .grid.grid--separate > .grid__11--xs {
    width: calc(91.66667% - 50px) !important;
  }

  .grid-separate-width-11--xs {
    width: calc(91.66667% - 50px) !important;
  }

  .grid.grid--separate > .grid__12--xs {
    width: calc(100% - 50px) !important;
  }

  .grid-separate-width-12--xs {
    width: calc(100% - 50px) !important;
  }
}
@media all and (min-width: 1601px) {
  .grid.grid--separate > .grid__1--xs {
    width: calc(8.33333% - 50px) !important;
  }

  .grid-separate-width-1--xs {
    width: calc(8.33333% - 50px) !important;
  }

  .grid.grid--separate > .grid__2--xs {
    width: calc(16.66667% - 50px) !important;
  }

  .grid-separate-width-2--xs {
    width: calc(16.66667% - 50px) !important;
  }

  .grid.grid--separate > .grid__3--xs {
    width: calc(25% - 50px) !important;
  }

  .grid-separate-width-3--xs {
    width: calc(25% - 50px) !important;
  }

  .grid.grid--separate > .grid__4--xs {
    width: calc(33.33333% - 50px) !important;
  }

  .grid-separate-width-4--xs {
    width: calc(33.33333% - 50px) !important;
  }

  .grid.grid--separate > .grid__5--xs {
    width: calc(41.66667% - 50px) !important;
  }

  .grid-separate-width-5--xs {
    width: calc(41.66667% - 50px) !important;
  }

  .grid.grid--separate > .grid__6--xs {
    width: calc(50% - 50px) !important;
  }

  .grid-separate-width-6--xs {
    width: calc(50% - 50px) !important;
  }

  .grid.grid--separate > .grid__7--xs {
    width: calc(58.33333% - 50px) !important;
  }

  .grid-separate-width-7--xs {
    width: calc(58.33333% - 50px) !important;
  }

  .grid.grid--separate > .grid__8--xs {
    width: calc(66.66667% - 50px) !important;
  }

  .grid-separate-width-8--xs {
    width: calc(66.66667% - 50px) !important;
  }

  .grid.grid--separate > .grid__9--xs {
    width: calc(75% - 50px) !important;
  }

  .grid-separate-width-9--xs {
    width: calc(75% - 50px) !important;
  }

  .grid.grid--separate > .grid__10--xs {
    width: calc(83.33333% - 50px) !important;
  }

  .grid-separate-width-10--xs {
    width: calc(83.33333% - 50px) !important;
  }

  .grid.grid--separate > .grid__11--xs {
    width: calc(91.66667% - 50px) !important;
  }

  .grid-separate-width-11--xs {
    width: calc(91.66667% - 50px) !important;
  }

  .grid.grid--separate > .grid__12--xs {
    width: calc(100% - 50px) !important;
  }

  .grid-separate-width-12--xs {
    width: calc(100% - 50px) !important;
  }
}
@media all and (min-width: 768px) {
  .grid.grid--separate > .grid__1--sm {
    width: calc(8.33333% - 40px) !important;
  }

  .grid-separate-width-1--sm {
    width: calc(8.33333% - 40px) !important;
  }

  .grid.grid--separate > .grid__2--sm {
    width: calc(16.66667% - 40px) !important;
  }

  .grid-separate-width-2--sm {
    width: calc(16.66667% - 40px) !important;
  }

  .grid.grid--separate > .grid__3--sm {
    width: calc(25% - 40px) !important;
  }

  .grid-separate-width-3--sm {
    width: calc(25% - 40px) !important;
  }

  .grid.grid--separate > .grid__4--sm {
    width: calc(33.33333% - 40px) !important;
  }

  .grid-separate-width-4--sm {
    width: calc(33.33333% - 40px) !important;
  }

  .grid.grid--separate > .grid__5--sm {
    width: calc(41.66667% - 40px) !important;
  }

  .grid-separate-width-5--sm {
    width: calc(41.66667% - 40px) !important;
  }

  .grid.grid--separate > .grid__6--sm {
    width: calc(50% - 40px) !important;
  }

  .grid-separate-width-6--sm {
    width: calc(50% - 40px) !important;
  }

  .grid.grid--separate > .grid__7--sm {
    width: calc(58.33333% - 40px) !important;
  }

  .grid-separate-width-7--sm {
    width: calc(58.33333% - 40px) !important;
  }

  .grid.grid--separate > .grid__8--sm {
    width: calc(66.66667% - 40px) !important;
  }

  .grid-separate-width-8--sm {
    width: calc(66.66667% - 40px) !important;
  }

  .grid.grid--separate > .grid__9--sm {
    width: calc(75% - 40px) !important;
  }

  .grid-separate-width-9--sm {
    width: calc(75% - 40px) !important;
  }

  .grid.grid--separate > .grid__10--sm {
    width: calc(83.33333% - 40px) !important;
  }

  .grid-separate-width-10--sm {
    width: calc(83.33333% - 40px) !important;
  }

  .grid.grid--separate > .grid__11--sm {
    width: calc(91.66667% - 40px) !important;
  }

  .grid-separate-width-11--sm {
    width: calc(91.66667% - 40px) !important;
  }

  .grid.grid--separate > .grid__12--sm {
    width: calc(100% - 40px) !important;
  }

  .grid-separate-width-12--sm {
    width: calc(100% - 40px) !important;
  }
}
@media all and (min-width: 961px) {
  .grid.grid--separate > .grid__1--sm {
    width: calc(8.33333% - 40px) !important;
  }

  .grid-separate-width-1--sm {
    width: calc(8.33333% - 40px) !important;
  }

  .grid.grid--separate > .grid__2--sm {
    width: calc(16.66667% - 40px) !important;
  }

  .grid-separate-width-2--sm {
    width: calc(16.66667% - 40px) !important;
  }

  .grid.grid--separate > .grid__3--sm {
    width: calc(25% - 40px) !important;
  }

  .grid-separate-width-3--sm {
    width: calc(25% - 40px) !important;
  }

  .grid.grid--separate > .grid__4--sm {
    width: calc(33.33333% - 40px) !important;
  }

  .grid-separate-width-4--sm {
    width: calc(33.33333% - 40px) !important;
  }

  .grid.grid--separate > .grid__5--sm {
    width: calc(41.66667% - 40px) !important;
  }

  .grid-separate-width-5--sm {
    width: calc(41.66667% - 40px) !important;
  }

  .grid.grid--separate > .grid__6--sm {
    width: calc(50% - 40px) !important;
  }

  .grid-separate-width-6--sm {
    width: calc(50% - 40px) !important;
  }

  .grid.grid--separate > .grid__7--sm {
    width: calc(58.33333% - 40px) !important;
  }

  .grid-separate-width-7--sm {
    width: calc(58.33333% - 40px) !important;
  }

  .grid.grid--separate > .grid__8--sm {
    width: calc(66.66667% - 40px) !important;
  }

  .grid-separate-width-8--sm {
    width: calc(66.66667% - 40px) !important;
  }

  .grid.grid--separate > .grid__9--sm {
    width: calc(75% - 40px) !important;
  }

  .grid-separate-width-9--sm {
    width: calc(75% - 40px) !important;
  }

  .grid.grid--separate > .grid__10--sm {
    width: calc(83.33333% - 40px) !important;
  }

  .grid-separate-width-10--sm {
    width: calc(83.33333% - 40px) !important;
  }

  .grid.grid--separate > .grid__11--sm {
    width: calc(91.66667% - 40px) !important;
  }

  .grid-separate-width-11--sm {
    width: calc(91.66667% - 40px) !important;
  }

  .grid.grid--separate > .grid__12--sm {
    width: calc(100% - 40px) !important;
  }

  .grid-separate-width-12--sm {
    width: calc(100% - 40px) !important;
  }
}
@media all and (min-width: 1201px) {
  .grid.grid--separate > .grid__1--sm {
    width: calc(8.33333% - 50px) !important;
  }

  .grid-separate-width-1--sm {
    width: calc(8.33333% - 50px) !important;
  }

  .grid.grid--separate > .grid__2--sm {
    width: calc(16.66667% - 50px) !important;
  }

  .grid-separate-width-2--sm {
    width: calc(16.66667% - 50px) !important;
  }

  .grid.grid--separate > .grid__3--sm {
    width: calc(25% - 50px) !important;
  }

  .grid-separate-width-3--sm {
    width: calc(25% - 50px) !important;
  }

  .grid.grid--separate > .grid__4--sm {
    width: calc(33.33333% - 50px) !important;
  }

  .grid-separate-width-4--sm {
    width: calc(33.33333% - 50px) !important;
  }

  .grid.grid--separate > .grid__5--sm {
    width: calc(41.66667% - 50px) !important;
  }

  .grid-separate-width-5--sm {
    width: calc(41.66667% - 50px) !important;
  }

  .grid.grid--separate > .grid__6--sm {
    width: calc(50% - 50px) !important;
  }

  .grid-separate-width-6--sm {
    width: calc(50% - 50px) !important;
  }

  .grid.grid--separate > .grid__7--sm {
    width: calc(58.33333% - 50px) !important;
  }

  .grid-separate-width-7--sm {
    width: calc(58.33333% - 50px) !important;
  }

  .grid.grid--separate > .grid__8--sm {
    width: calc(66.66667% - 50px) !important;
  }

  .grid-separate-width-8--sm {
    width: calc(66.66667% - 50px) !important;
  }

  .grid.grid--separate > .grid__9--sm {
    width: calc(75% - 50px) !important;
  }

  .grid-separate-width-9--sm {
    width: calc(75% - 50px) !important;
  }

  .grid.grid--separate > .grid__10--sm {
    width: calc(83.33333% - 50px) !important;
  }

  .grid-separate-width-10--sm {
    width: calc(83.33333% - 50px) !important;
  }

  .grid.grid--separate > .grid__11--sm {
    width: calc(91.66667% - 50px) !important;
  }

  .grid-separate-width-11--sm {
    width: calc(91.66667% - 50px) !important;
  }

  .grid.grid--separate > .grid__12--sm {
    width: calc(100% - 50px) !important;
  }

  .grid-separate-width-12--sm {
    width: calc(100% - 50px) !important;
  }
}
@media all and (min-width: 1601px) {
  .grid.grid--separate > .grid__1--sm {
    width: calc(8.33333% - 50px) !important;
  }

  .grid-separate-width-1--sm {
    width: calc(8.33333% - 50px) !important;
  }

  .grid.grid--separate > .grid__2--sm {
    width: calc(16.66667% - 50px) !important;
  }

  .grid-separate-width-2--sm {
    width: calc(16.66667% - 50px) !important;
  }

  .grid.grid--separate > .grid__3--sm {
    width: calc(25% - 50px) !important;
  }

  .grid-separate-width-3--sm {
    width: calc(25% - 50px) !important;
  }

  .grid.grid--separate > .grid__4--sm {
    width: calc(33.33333% - 50px) !important;
  }

  .grid-separate-width-4--sm {
    width: calc(33.33333% - 50px) !important;
  }

  .grid.grid--separate > .grid__5--sm {
    width: calc(41.66667% - 50px) !important;
  }

  .grid-separate-width-5--sm {
    width: calc(41.66667% - 50px) !important;
  }

  .grid.grid--separate > .grid__6--sm {
    width: calc(50% - 50px) !important;
  }

  .grid-separate-width-6--sm {
    width: calc(50% - 50px) !important;
  }

  .grid.grid--separate > .grid__7--sm {
    width: calc(58.33333% - 50px) !important;
  }

  .grid-separate-width-7--sm {
    width: calc(58.33333% - 50px) !important;
  }

  .grid.grid--separate > .grid__8--sm {
    width: calc(66.66667% - 50px) !important;
  }

  .grid-separate-width-8--sm {
    width: calc(66.66667% - 50px) !important;
  }

  .grid.grid--separate > .grid__9--sm {
    width: calc(75% - 50px) !important;
  }

  .grid-separate-width-9--sm {
    width: calc(75% - 50px) !important;
  }

  .grid.grid--separate > .grid__10--sm {
    width: calc(83.33333% - 50px) !important;
  }

  .grid-separate-width-10--sm {
    width: calc(83.33333% - 50px) !important;
  }

  .grid.grid--separate > .grid__11--sm {
    width: calc(91.66667% - 50px) !important;
  }

  .grid-separate-width-11--sm {
    width: calc(91.66667% - 50px) !important;
  }

  .grid.grid--separate > .grid__12--sm {
    width: calc(100% - 50px) !important;
  }

  .grid-separate-width-12--sm {
    width: calc(100% - 50px) !important;
  }
}
@media all and (min-width: 961px) {
  .grid.grid--separate > .grid__1--md {
    width: calc(8.33333% - 40px) !important;
  }

  .grid-separate-width-1--md {
    width: calc(8.33333% - 40px) !important;
  }

  .grid.grid--separate > .grid__2--md {
    width: calc(16.66667% - 40px) !important;
  }

  .grid-separate-width-2--md {
    width: calc(16.66667% - 40px) !important;
  }

  .grid.grid--separate > .grid__3--md {
    width: calc(25% - 40px) !important;
  }

  .grid-separate-width-3--md {
    width: calc(25% - 40px) !important;
  }

  .grid.grid--separate > .grid__4--md {
    width: calc(33.33333% - 40px) !important;
  }

  .grid-separate-width-4--md {
    width: calc(33.33333% - 40px) !important;
  }

  .grid.grid--separate > .grid__5--md {
    width: calc(41.66667% - 40px) !important;
  }

  .grid-separate-width-5--md {
    width: calc(41.66667% - 40px) !important;
  }

  .grid.grid--separate > .grid__6--md {
    width: calc(50% - 40px) !important;
  }

  .grid-separate-width-6--md {
    width: calc(50% - 40px) !important;
  }

  .grid.grid--separate > .grid__7--md {
    width: calc(58.33333% - 40px) !important;
  }

  .grid-separate-width-7--md {
    width: calc(58.33333% - 40px) !important;
  }

  .grid.grid--separate > .grid__8--md {
    width: calc(66.66667% - 40px) !important;
  }

  .grid-separate-width-8--md {
    width: calc(66.66667% - 40px) !important;
  }

  .grid.grid--separate > .grid__9--md {
    width: calc(75% - 40px) !important;
  }

  .grid-separate-width-9--md {
    width: calc(75% - 40px) !important;
  }

  .grid.grid--separate > .grid__10--md {
    width: calc(83.33333% - 40px) !important;
  }

  .grid-separate-width-10--md {
    width: calc(83.33333% - 40px) !important;
  }

  .grid.grid--separate > .grid__11--md {
    width: calc(91.66667% - 40px) !important;
  }

  .grid-separate-width-11--md {
    width: calc(91.66667% - 40px) !important;
  }

  .grid.grid--separate > .grid__12--md {
    width: calc(100% - 40px) !important;
  }

  .grid-separate-width-12--md {
    width: calc(100% - 40px) !important;
  }
}
@media all and (min-width: 1201px) {
  .grid.grid--separate > .grid__1--md {
    width: calc(8.33333% - 50px) !important;
  }

  .grid-separate-width-1--md {
    width: calc(8.33333% - 50px) !important;
  }

  .grid.grid--separate > .grid__2--md {
    width: calc(16.66667% - 50px) !important;
  }

  .grid-separate-width-2--md {
    width: calc(16.66667% - 50px) !important;
  }

  .grid.grid--separate > .grid__3--md {
    width: calc(25% - 50px) !important;
  }

  .grid-separate-width-3--md {
    width: calc(25% - 50px) !important;
  }

  .grid.grid--separate > .grid__4--md {
    width: calc(33.33333% - 50px) !important;
  }

  .grid-separate-width-4--md {
    width: calc(33.33333% - 50px) !important;
  }

  .grid.grid--separate > .grid__5--md {
    width: calc(41.66667% - 50px) !important;
  }

  .grid-separate-width-5--md {
    width: calc(41.66667% - 50px) !important;
  }

  .grid.grid--separate > .grid__6--md {
    width: calc(50% - 50px) !important;
  }

  .grid-separate-width-6--md {
    width: calc(50% - 50px) !important;
  }

  .grid.grid--separate > .grid__7--md {
    width: calc(58.33333% - 50px) !important;
  }

  .grid-separate-width-7--md {
    width: calc(58.33333% - 50px) !important;
  }

  .grid.grid--separate > .grid__8--md {
    width: calc(66.66667% - 50px) !important;
  }

  .grid-separate-width-8--md {
    width: calc(66.66667% - 50px) !important;
  }

  .grid.grid--separate > .grid__9--md {
    width: calc(75% - 50px) !important;
  }

  .grid-separate-width-9--md {
    width: calc(75% - 50px) !important;
  }

  .grid.grid--separate > .grid__10--md {
    width: calc(83.33333% - 50px) !important;
  }

  .grid-separate-width-10--md {
    width: calc(83.33333% - 50px) !important;
  }

  .grid.grid--separate > .grid__11--md {
    width: calc(91.66667% - 50px) !important;
  }

  .grid-separate-width-11--md {
    width: calc(91.66667% - 50px) !important;
  }

  .grid.grid--separate > .grid__12--md {
    width: calc(100% - 50px) !important;
  }

  .grid-separate-width-12--md {
    width: calc(100% - 50px) !important;
  }
}
@media all and (min-width: 1601px) {
  .grid.grid--separate > .grid__1--md {
    width: calc(8.33333% - 50px) !important;
  }

  .grid-separate-width-1--md {
    width: calc(8.33333% - 50px) !important;
  }

  .grid.grid--separate > .grid__2--md {
    width: calc(16.66667% - 50px) !important;
  }

  .grid-separate-width-2--md {
    width: calc(16.66667% - 50px) !important;
  }

  .grid.grid--separate > .grid__3--md {
    width: calc(25% - 50px) !important;
  }

  .grid-separate-width-3--md {
    width: calc(25% - 50px) !important;
  }

  .grid.grid--separate > .grid__4--md {
    width: calc(33.33333% - 50px) !important;
  }

  .grid-separate-width-4--md {
    width: calc(33.33333% - 50px) !important;
  }

  .grid.grid--separate > .grid__5--md {
    width: calc(41.66667% - 50px) !important;
  }

  .grid-separate-width-5--md {
    width: calc(41.66667% - 50px) !important;
  }

  .grid.grid--separate > .grid__6--md {
    width: calc(50% - 50px) !important;
  }

  .grid-separate-width-6--md {
    width: calc(50% - 50px) !important;
  }

  .grid.grid--separate > .grid__7--md {
    width: calc(58.33333% - 50px) !important;
  }

  .grid-separate-width-7--md {
    width: calc(58.33333% - 50px) !important;
  }

  .grid.grid--separate > .grid__8--md {
    width: calc(66.66667% - 50px) !important;
  }

  .grid-separate-width-8--md {
    width: calc(66.66667% - 50px) !important;
  }

  .grid.grid--separate > .grid__9--md {
    width: calc(75% - 50px) !important;
  }

  .grid-separate-width-9--md {
    width: calc(75% - 50px) !important;
  }

  .grid.grid--separate > .grid__10--md {
    width: calc(83.33333% - 50px) !important;
  }

  .grid-separate-width-10--md {
    width: calc(83.33333% - 50px) !important;
  }

  .grid.grid--separate > .grid__11--md {
    width: calc(91.66667% - 50px) !important;
  }

  .grid-separate-width-11--md {
    width: calc(91.66667% - 50px) !important;
  }

  .grid.grid--separate > .grid__12--md {
    width: calc(100% - 50px) !important;
  }

  .grid-separate-width-12--md {
    width: calc(100% - 50px) !important;
  }
}
@media all and (min-width: 1201px) {
  .grid.grid--separate > .grid__1--lg {
    width: calc(8.33333% - 50px) !important;
  }

  .grid-separate-width-1--lg {
    width: calc(8.33333% - 50px) !important;
  }

  .grid.grid--separate > .grid__2--lg {
    width: calc(16.66667% - 50px) !important;
  }

  .grid-separate-width-2--lg {
    width: calc(16.66667% - 50px) !important;
  }

  .grid.grid--separate > .grid__3--lg {
    width: calc(25% - 50px) !important;
  }

  .grid-separate-width-3--lg {
    width: calc(25% - 50px) !important;
  }

  .grid.grid--separate > .grid__4--lg {
    width: calc(33.33333% - 50px) !important;
  }

  .grid-separate-width-4--lg {
    width: calc(33.33333% - 50px) !important;
  }

  .grid.grid--separate > .grid__5--lg {
    width: calc(41.66667% - 50px) !important;
  }

  .grid-separate-width-5--lg {
    width: calc(41.66667% - 50px) !important;
  }

  .grid.grid--separate > .grid__6--lg {
    width: calc(50% - 50px) !important;
  }

  .grid-separate-width-6--lg {
    width: calc(50% - 50px) !important;
  }

  .grid.grid--separate > .grid__7--lg {
    width: calc(58.33333% - 50px) !important;
  }

  .grid-separate-width-7--lg {
    width: calc(58.33333% - 50px) !important;
  }

  .grid.grid--separate > .grid__8--lg {
    width: calc(66.66667% - 50px) !important;
  }

  .grid-separate-width-8--lg {
    width: calc(66.66667% - 50px) !important;
  }

  .grid.grid--separate > .grid__9--lg {
    width: calc(75% - 50px) !important;
  }

  .grid-separate-width-9--lg {
    width: calc(75% - 50px) !important;
  }

  .grid.grid--separate > .grid__10--lg {
    width: calc(83.33333% - 50px) !important;
  }

  .grid-separate-width-10--lg {
    width: calc(83.33333% - 50px) !important;
  }

  .grid.grid--separate > .grid__11--lg {
    width: calc(91.66667% - 50px) !important;
  }

  .grid-separate-width-11--lg {
    width: calc(91.66667% - 50px) !important;
  }

  .grid.grid--separate > .grid__12--lg {
    width: calc(100% - 50px) !important;
  }

  .grid-separate-width-12--lg {
    width: calc(100% - 50px) !important;
  }
}
@media all and (min-width: 1601px) {
  .grid.grid--separate > .grid__1--lg {
    width: calc(8.33333% - 50px) !important;
  }

  .grid-separate-width-1--lg {
    width: calc(8.33333% - 50px) !important;
  }

  .grid.grid--separate > .grid__2--lg {
    width: calc(16.66667% - 50px) !important;
  }

  .grid-separate-width-2--lg {
    width: calc(16.66667% - 50px) !important;
  }

  .grid.grid--separate > .grid__3--lg {
    width: calc(25% - 50px) !important;
  }

  .grid-separate-width-3--lg {
    width: calc(25% - 50px) !important;
  }

  .grid.grid--separate > .grid__4--lg {
    width: calc(33.33333% - 50px) !important;
  }

  .grid-separate-width-4--lg {
    width: calc(33.33333% - 50px) !important;
  }

  .grid.grid--separate > .grid__5--lg {
    width: calc(41.66667% - 50px) !important;
  }

  .grid-separate-width-5--lg {
    width: calc(41.66667% - 50px) !important;
  }

  .grid.grid--separate > .grid__6--lg {
    width: calc(50% - 50px) !important;
  }

  .grid-separate-width-6--lg {
    width: calc(50% - 50px) !important;
  }

  .grid.grid--separate > .grid__7--lg {
    width: calc(58.33333% - 50px) !important;
  }

  .grid-separate-width-7--lg {
    width: calc(58.33333% - 50px) !important;
  }

  .grid.grid--separate > .grid__8--lg {
    width: calc(66.66667% - 50px) !important;
  }

  .grid-separate-width-8--lg {
    width: calc(66.66667% - 50px) !important;
  }

  .grid.grid--separate > .grid__9--lg {
    width: calc(75% - 50px) !important;
  }

  .grid-separate-width-9--lg {
    width: calc(75% - 50px) !important;
  }

  .grid.grid--separate > .grid__10--lg {
    width: calc(83.33333% - 50px) !important;
  }

  .grid-separate-width-10--lg {
    width: calc(83.33333% - 50px) !important;
  }

  .grid.grid--separate > .grid__11--lg {
    width: calc(91.66667% - 50px) !important;
  }

  .grid-separate-width-11--lg {
    width: calc(91.66667% - 50px) !important;
  }

  .grid.grid--separate > .grid__12--lg {
    width: calc(100% - 50px) !important;
  }

  .grid-separate-width-12--lg {
    width: calc(100% - 50px) !important;
  }
}
@media all and (min-width: 1601px) {
  .grid.grid--separate > .grid__1--xl {
    width: calc(8.33333% - 50px) !important;
  }

  .grid-separate-width-1--xl {
    width: calc(8.33333% - 50px) !important;
  }

  .grid.grid--separate > .grid__2--xl {
    width: calc(16.66667% - 50px) !important;
  }

  .grid-separate-width-2--xl {
    width: calc(16.66667% - 50px) !important;
  }

  .grid.grid--separate > .grid__3--xl {
    width: calc(25% - 50px) !important;
  }

  .grid-separate-width-3--xl {
    width: calc(25% - 50px) !important;
  }

  .grid.grid--separate > .grid__4--xl {
    width: calc(33.33333% - 50px) !important;
  }

  .grid-separate-width-4--xl {
    width: calc(33.33333% - 50px) !important;
  }

  .grid.grid--separate > .grid__5--xl {
    width: calc(41.66667% - 50px) !important;
  }

  .grid-separate-width-5--xl {
    width: calc(41.66667% - 50px) !important;
  }

  .grid.grid--separate > .grid__6--xl {
    width: calc(50% - 50px) !important;
  }

  .grid-separate-width-6--xl {
    width: calc(50% - 50px) !important;
  }

  .grid.grid--separate > .grid__7--xl {
    width: calc(58.33333% - 50px) !important;
  }

  .grid-separate-width-7--xl {
    width: calc(58.33333% - 50px) !important;
  }

  .grid.grid--separate > .grid__8--xl {
    width: calc(66.66667% - 50px) !important;
  }

  .grid-separate-width-8--xl {
    width: calc(66.66667% - 50px) !important;
  }

  .grid.grid--separate > .grid__9--xl {
    width: calc(75% - 50px) !important;
  }

  .grid-separate-width-9--xl {
    width: calc(75% - 50px) !important;
  }

  .grid.grid--separate > .grid__10--xl {
    width: calc(83.33333% - 50px) !important;
  }

  .grid-separate-width-10--xl {
    width: calc(83.33333% - 50px) !important;
  }

  .grid.grid--separate > .grid__11--xl {
    width: calc(91.66667% - 50px) !important;
  }

  .grid-separate-width-11--xl {
    width: calc(91.66667% - 50px) !important;
  }

  .grid.grid--separate > .grid__12--xl {
    width: calc(100% - 50px) !important;
  }

  .grid-separate-width-12--xl {
    width: calc(100% - 50px) !important;
  }
}
/* Scss Document */
