/*     F L E X     */

.row-start-start
{
  display: -webkit-flex;
  -webkit-justify-content: flex-start;
  -webkit-align-items: flex-start;

  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
}

.row-start-center
{
  display: -webkit-flex;
  -webkit-justify-content: flex-start;
  -webkit-align-items: center;

  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}

.row-start-end
{
  display: -webkit-flex;
  -webkit-justify-content: flex-start;
  -webkit-align-items: flex-end;

  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-end;
}

.row-start-stretch
{
  display: -webkit-flex;
  -webkit-justify-content: flex-start;
  -webkit-align-items: stretch;

  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: stretch;
}

.row-start-baseline
{
  display: -webkit-flex;
  -webkit-justify-content: flex-start;
  -webkit-align-items: baseline;

  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: baseline;
}

.row-center-start
{
  display: -webkit-flex;
  -webkit-justify-content: center;
  -webkit-align-items: flex-start;

  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
}

.row-center-center
{
  display: -webkit-flex;
  -webkit-justify-content: center;
  -webkit-align-items: center;

  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.row-center-end
{
  display: -webkit-flex;
  -webkit-justify-content: center;
  -webkit-align-items: flex-end;

  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-end;
}

.row-center-stretch
{
  display: -webkit-flex;
  -webkit-justify-content: center;
  -webkit-align-items: stretch;

  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: stretch;
}

.row-center-baseline
{
  display: -webkit-flex;
  -webkit-justify-content: center;
  -webkit-align-items: baseline;

  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: baseline;
}

.row-end-start
{
  display: -webkit-flex;
  -webkit-justify-content: flex-end;
  -webkit-align-items: flex-start;

  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: flex-start;
}

.row-end-center
{
  display: -webkit-flex;
  -webkit-justify-content: flex-end;
  -webkit-align-items: center;

  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
}

.row-end-end
{
  display: -webkit-flex;
  -webkit-justify-content: flex-end;
  -webkit-align-items: flex-end;

  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: flex-end;
}

.row-end-stretch
{
  display: -webkit-flex;
  -webkit-justify-content: flex-end;
  -webkit-align-items: stretch;

  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: stretch;
}

.row-end-baseline
{
  display: -webkit-flex;
  -webkit-justify-content: flex-end;
  -webkit-align-items: baseline;

  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: baseline;
}

.row-around-start
{
  display: -webkit-flex;
  -webkit-justify-content: space-around;
  -webkit-align-items: flex-start;

  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: flex-start;
}

.row-around-center
{
  display: -webkit-flex;
  -webkit-justify-content: space-around;
  -webkit-align-items: center;

  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
}

.row-around-end
{
  display: -webkit-flex;
  -webkit-justify-content: space-around;
  -webkit-align-items: flex-end;

  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: flex-end;
}

.row-around-stretch
{
  display: -webkit-flex;
  -webkit-justify-content: space-around;
  -webkit-align-items: stretch;

  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: stretch;
}

.row-around-baseline
{
  display: -webkit-flex;
  -webkit-justify-content: space-around;
  -webkit-align-items: baseline;

  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: baseline;
}

.row-between-start
{
  display: -webkit-flex;
  -webkit-justify-content: space-between;
  -webkit-align-items: flex-start;

  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
}

.row-between-center
{
  display: -webkit-flex;
  -webkit-justify-content: space-between;
  -webkit-align-items: center;

  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.row-between-end
{
  display: -webkit-flex;
  -webkit-justify-content: space-between;
  -webkit-align-items: flex-end;

  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: flex-end;
}

.row-between-stretch
{
  display: -webkit-flex;
  -webkit-justify-content: space-between;
  -webkit-align-items: stretch;

  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: stretch;
}

.row-between-baseline
{
  display: -webkit-flex;
  -webkit-justify-content: space-between;
  -webkit-align-items: baseline;

  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: baseline;
}

.column-start-start
{
  display: -webkit-flex;
  -webkit-justify-content: flex-start;
  -webkit-align-items: flex-start;

  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}

.column-start-center
{
  display: -webkit-flex;
  -webkit-justify-content: flex-start;
  -webkit-align-items: center;

  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

.column-start-end
{
  display: -webkit-flex;
  -webkit-justify-content: flex-start;
  -webkit-align-items: flex-end;

  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
}

.column-start-stretch
{
  display: -webkit-flex;
  -webkit-justify-content: flex-start;
  -webkit-align-items: stretch;

  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
}

.column-start-baseline
{
  display: -webkit-flex;
  -webkit-justify-content: flex-start;
  -webkit-align-items: baseline;

  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: baseline;
}

.column-center-start
{
  display: -webkit-flex;
  -webkit-justify-content: center;
  -webkit-align-items: flex-start;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.column-center-center
{
  display: -webkit-flex;
  -webkit-justify-content: center;
  -webkit-align-items: center;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.column-center-end
{
  display: -webkit-flex;
  -webkit-justify-content: center;
  -webkit-align-items: flex-end;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
}

.column-center-stretch
{
  display: -webkit-flex;
  -webkit-justify-content: center;
  -webkit-align-items: stretch;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
}

.column-center-baseline
{
  display: -webkit-flex;
  -webkit-justify-content: center;
  -webkit-align-items: baseline;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: baseline;
}

.column-end-start
{
  display: -webkit-flex;
  -webkit-justify-content: flex-end;
  -webkit-align-items: flex-start;

  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
}

.column-end-center
{
  display: -webkit-flex;
  -webkit-justify-content: flex-end;
  -webkit-align-items: center;

  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
}

.column-end-end
{
  display: -webkit-flex;
  -webkit-justify-content: flex-end;
  -webkit-align-items: flex-end;

  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
}

.column-end-stretch
{
  display: -webkit-flex;
  -webkit-justify-content: flex-end;
  -webkit-align-items: stretch;

  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: stretch;
}

.column-end-baseline
{
  display: -webkit-flex;
  -webkit-justify-content: flex-end;
  -webkit-align-items: baseline;

  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: baseline;
}

.column-around-start
{
  display: -webkit-flex;
  -webkit-justify-content: space-around;
  -webkit-align-items: flex-start;

  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: flex-start;
}

.column-around-center
{
  display: -webkit-flex;
  -webkit-justify-content: space-around;
  -webkit-align-items: center;

  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
}

.column-around-end
{
  display: -webkit-flex;
  -webkit-justify-content: space-around;
  -webkit-align-items: flex-end;

  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: flex-end;
}

.column-around-stretch
{
  display: -webkit-flex;
  -webkit-justify-content: space-around;
  -webkit-align-items: stretch;

  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: stretch;
}

.column-around-baseline
{
  display: -webkit-flex;
  -webkit-justify-content: space-around;
  -webkit-align-items: baseline;

  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: baseline;
}

.column-between-start
{
  display: -webkit-flex;
  -webkit-justify-content: space-between;
  -webkit-align-items: flex-start;

  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
}

.column-between-center
{
  display: -webkit-flex;
  -webkit-justify-content: space-between;
  -webkit-align-items: center;

  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.column-between-end
{
  display: -webkit-flex;
  -webkit-justify-content: space-between;
  -webkit-align-items: flex-end;

  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: flex-end;
}

.column-between-stretch
{
  display: -webkit-flex;
  -webkit-justify-content: space-between;
  -webkit-align-items: stretch;

  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
}

.column-between-baseline
{
  display: -webkit-flex;
  -webkit-justify-content: space-between;
  -webkit-align-items: baseline;

  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: baseline;
}

.wrap-row-start-start
{
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  -webkit-align-content: flex-start;

  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: flex-start;
  align-content: flex-start;
}

.wrap-row-start-center
{
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  -webkit-align-content: center;

  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: flex-start;
  align-content: center;
}

.wrap-row-start-end
{
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  -webkit-align-content: flex-end;

  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: flex-start;
  align-content: flex-end;
}

.wrap-row-start-between
{
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  -webkit-align-content: space-between;

  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: flex-start;
  align-content: space-between;
}

.wrap-row-start-around
{
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  -webkit-align-content: space-around;

  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: flex-start;
  align-content: space-around;
}

.wrap-row-start-stretch
{
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  -webkit-align-content: stretch;

  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: flex-start;
  align-content: stretch;
}

.wrap-row-center-start
{
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  -webkit-justify-content: center;
  -webkit-align-content: flex-start;

  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: center;
  align-content: flex-start;
}

.wrap-row-center-center
{
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  -webkit-justify-content: center;
  -webkit-align-content: center;

  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: center;
  align-content: center;
}

.wrap-row-center-end
{
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  -webkit-justify-content: center;
  -webkit-align-content: flex-end;

  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: center;
  align-content: flex-end;
}

.wrap-row-center-between
{
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  -webkit-justify-content: center;
  -webkit-align-content: space-between;

  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: center;
  align-content: space-between;
}

.wrap-row-center-around
{
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  -webkit-justify-content: center;
  -webkit-align-content: space-around;

  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: center;
  align-content: space-around;
}

.wrap-row-center-stretch
{
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  -webkit-justify-content: center;
  -webkit-align-content: stretch;

  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: center;
  align-content: stretch;
}

.wrap-row-end-start
{
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  -webkit-align-content: flex-start;

  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: flex-end;
  align-content: flex-start;
}

.wrap-row-end-center
{
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  -webkit-align-content: center;

  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: flex-end;
  align-content: center;
}

.wrap-row-end-end
{
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  -webkit-align-content: flex-end;

  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: flex-end;
  align-content: flex-end;
}

.wrap-row-end-between
{
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  -webkit-align-content: space-between;

  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: flex-end;
  align-content: space-between;
}

.wrap-row-end-around
{
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  -webkit-align-content: space-around;

  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: flex-end;
  align-content: space-around;
}

.wrap-row-end-stretch
{
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  -webkit-align-content: stretch;

  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: flex-end;
  align-content: stretch;
}

.wrap-row-between-start
{
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  -webkit-justify-content: space-between;
  -webkit-align-content: flex-start;

  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-between;
  align-content: flex-start;
}

.wrap-row-between-center
{
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  -webkit-justify-content: space-between;
  -webkit-align-content: center;

  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-between;
  align-content: center;
}

.wrap-row-between-end
{
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  -webkit-justify-content: space-between;
  -webkit-align-content: flex-end;

  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-between;
  align-content: flex-end;
}

.wrap-row-between-between
{
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  -webkit-justify-content: space-between;
  -webkit-align-content: space-between;

  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-between;
  align-content: space-between;
}

.wrap-row-between-around
{
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  -webkit-justify-content: space-between;
  -webkit-align-content: space-around;

  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-between;
  align-content: space-around;
}

.wrap-row-between-stretch
{
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  -webkit-justify-content: space-between;
  -webkit-align-content: stretch;

  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-between;
  align-content: stretch;
}

.wrap-row-around-start
{
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  -webkit-justify-content: space-around;
  -webkit-align-content: flex-start;

  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-around;
  align-content: flex-start;
}

.wrap-row-around-center
{
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  -webkit-justify-content: space-around;
  -webkit-align-content: center;

  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-around;
  align-content: center;
}

.wrap-row-around-end
{
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  -webkit-justify-content: space-around;
  -webkit-align-content: flex-end;

  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-around;
  align-content: flex-end;
}

.wrap-row-around-between
{
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  -webkit-justify-content: space-around;
  -webkit-align-content: space-between;

  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-around;
  align-content: space-between;
}

.wrap-row-around-around
{
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  -webkit-justify-content: space-around;
  -webkit-align-content: space-around;

  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-around;
  align-content: space-around;
}

.wrap-row-around-stretch
{
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  -webkit-justify-content: space-around;
  -webkit-align-content: stretch;

  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-around;
  align-content: stretch;
}

/* wrap with default column start */

.wrap-column-start-start-def-start
{
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  -webkit-align-content: flex-start;
  -webkit-align-items: flex-start;

  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
}

.wrap-column-start-center-def-start
{
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  -webkit-align-content: center;
  -webkit-align-items: flex-start;

  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: flex-start;
  align-content: center;
  align-items: flex-start;
}

.wrap-column-start-end-def-start
{
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  -webkit-align-content: flex-end;
  -webkit-align-items: flex-start;

  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: flex-start;
  align-content: flex-end;
  align-items: flex-start;
}

.wrap-column-start-between-def-start
{
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  -webkit-align-content: space-between;
  -webkit-align-items: flex-start;

  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: flex-start;
  align-content: space-between;
  align-items: flex-start;
}

.wrap-column-start-around-def-start
{
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  -webkit-align-content: space-around;
  -webkit-align-items: flex-start;

  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: flex-start;
  align-content: space-around;
  align-items: flex-start;
}

.wrap-column-start-stretch-def-start
{
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  -webkit-align-content: stretch;
  -webkit-align-items: flex-start;

  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: flex-start;
  align-content: stretch;
  align-items: flex-start;
}

.wrap-column-center-start-def-start
{
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  -webkit-justify-content: center;
  -webkit-align-content: flex-start;
  -webkit-align-items: flex-start;

  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  align-content: flex-start;
  align-items: flex-start;
}

.wrap-column-center-center-def-start
{
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  -webkit-justify-content: center;
  -webkit-align-content: center;
  -webkit-align-items: flex-start;

  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  align-content: center;
  align-items: flex-start;
}

.wrap-column-center-end-def-start
{
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  -webkit-justify-content: center;
  -webkit-align-content: flex-end;
  -webkit-align-items: flex-start;

  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  align-content: flex-end;
  align-items: flex-start;
}

.wrap-column-center-between-def-start
{
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  -webkit-justify-content: center;
  -webkit-align-content: space-between;
  -webkit-align-items: flex-start;

  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  align-content: space-between;
  align-items: flex-start;
}

.wrap-column-center-around-def-start
{
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  -webkit-justify-content: center;
  -webkit-align-content: space-around;
  -webkit-align-items: flex-start;

  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  align-content: space-around;
  align-items: flex-start;
}

.wrap-column-center-stretch-def-start
{
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  -webkit-justify-content: center;
  -webkit-align-content: stretch;
  -webkit-align-items: flex-start;

  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  align-content: stretch;
  align-items: flex-start;
}

.wrap-column-end-start-def-start
{
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  -webkit-align-content: flex-start;
  -webkit-align-items: flex-start;

  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: flex-end;
  align-content: flex-start;
  align-items: flex-start;
}

.wrap-column-end-center-def-start
{
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  -webkit-align-content: center;
  -webkit-align-items: flex-start;

  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: flex-end;
  align-content: center;
  align-items: flex-start;
}

.wrap-column-end-end-def-start
{
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  -webkit-align-content: flex-end;
  -webkit-align-items: flex-start;

  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: flex-end;
  align-content: flex-end;
  align-items: flex-start;
}

.wrap-column-end-between-def-start
{
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  -webkit-align-content: space-between;
  -webkit-align-items: flex-start;

  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: flex-end;
  align-content: space-between;
  align-items: flex-start;
}

.wrap-column-end-around-def-start
{
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  -webkit-align-content: space-around;
  -webkit-align-items: flex-start;

  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: flex-end;
  align-content: space-around;
  align-items: flex-start;
}

.wrap-column-end-stretch-def-start
{
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  -webkit-align-content: stretch;
  -webkit-align-items: flex-start;

  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: flex-end;
  align-content: stretch;
  align-items: flex-start;
}

.wrap-column-between-start-def-start
{
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  -webkit-justify-content: space-between;
  -webkit-align-content: flex-start;
  -webkit-align-items: flex-start;

  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: space-between;
  align-content: flex-start;
  align-items: flex-start;
}

.wrap-column-between-center-def-start
{
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  -webkit-justify-content: space-between;
  -webkit-align-content: center;
  -webkit-align-items: flex-start;

  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: space-between;
  align-content: center;
  align-items: flex-start;
}

.wrap-column-between-end-def-start
{
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  -webkit-justify-content: space-between;
  -webkit-align-content: flex-end;
  -webkit-align-items: flex-start;

  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: space-between;
  align-content: flex-end;
  align-items: flex-start;
}

.wrap-column-between-between-def-start
{
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  -webkit-justify-content: space-between;
  -webkit-align-content: space-between;
  -webkit-align-items: flex-start;

  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: space-between;
  align-content: space-between;
  align-items: flex-start;
}

.wrap-column-between-around-def-start
{
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  -webkit-justify-content: space-between;
  -webkit-align-content: space-around;
  -webkit-align-items: flex-start;

  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: space-between;
  align-content: space-around;
  align-items: flex-start;
}

.wrap-column-between-stretch-def-start
{
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  -webkit-justify-content: space-between;
  -webkit-align-content: stretch;
  -webkit-align-items: flex-start;

  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: space-between;
  align-content: stretch;
  align-items: flex-start;
}

.wrap-column-around-start-def-start
{
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  -webkit-justify-content: space-around;
  -webkit-align-content: flex-start;
  -webkit-align-items: flex-start;

  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: space-around;
  align-content: flex-start;
  align-items: flex-start;
}

.wrap-column-around-center-def-start
{
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  -webkit-justify-content: space-around;
  -webkit-align-content: center;
  -webkit-align-items: flex-start;

  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: space-around;
  align-content: center;
  align-items: flex-start;
}

.wrap-column-around-end-def-start
{
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  -webkit-justify-content: space-around;
  -webkit-align-content: flex-end;
  -webkit-align-items: flex-start;

  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: space-around;
  align-content: flex-end;
  align-items: flex-start;
}

.wrap-column-around-between-def-start
{
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  -webkit-justify-content: space-around;
  -webkit-align-content: space-between;
  -webkit-align-items: flex-start;

  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: space-around;
  align-content: space-between;
  align-items: flex-start;
}

.wrap-column-around-around-def-start
{
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  -webkit-justify-content: space-around;
  -webkit-align-content: space-around;
  -webkit-align-items: flex-start;

  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: space-around;
  align-content: space-around;
  align-items: flex-start;
}

.wrap-column-around-stretch-def-start
{
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  -webkit-justify-content: space-around;
  -webkit-align-content: stretch;
  -webkit-align-items: flex-start;

  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: space-around;
  align-content: stretch;
  align-items: flex-start;
}

/* wrap with default column center*/

.wrap-column-start-start-def-center
{
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  -webkit-align-content: flex-start;
  -webkit-align-items: center;

  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: center;
}

.wrap-column-start-center-def-center
{
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  -webkit-align-content: center;
  -webkit-align-items: center;

  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: flex-start;
  align-content: center;
  align-items: center;
}

.wrap-column-start-end-def-center
{
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  -webkit-align-content: flex-end;
  -webkit-align-items: center;

  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: flex-start;
  align-content: flex-end;
  align-items: center;
}

.wrap-column-start-between-def-center
{
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  -webkit-align-content: space-between;
  -webkit-align-items: center;

  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: flex-start;
  align-content: space-between;
  align-items: center;
}

.wrap-column-start-around-def-center
{
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  -webkit-align-content: space-around;
  -webkit-align-items: center;

  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: flex-start;
  align-content: space-around;
  align-items: center;
}

.wrap-column-start-stretch-def-center
{
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  -webkit-align-content: stretch;
  -webkit-align-items: center;

  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: flex-start;
  align-content: stretch;
  align-items: center;
}

.wrap-column-center-start-def-center
{
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  -webkit-justify-content: center;
  -webkit-align-content: flex-start;
  -webkit-align-items: center;

  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  align-content: flex-start;
  align-items: center;
}

.wrap-column-center-center-def-center
{
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  -webkit-justify-content: center;
  -webkit-align-content: center;
  -webkit-align-items: center;

  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  align-content: center;
  align-items: center;
}

.wrap-column-center-end-def-center
{
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  -webkit-justify-content: center;
  -webkit-align-content: flex-end;
  -webkit-align-items: center;

  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  align-content: flex-end;
  align-items: center;
}

.wrap-column-center-between-def-center
{
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  -webkit-justify-content: center;
  -webkit-align-content: space-between;
  -webkit-align-items: center;

  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  align-content: space-between;
  align-items: center;
}

.wrap-column-center-around-def-center
{
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  -webkit-justify-content: center;
  -webkit-align-content: space-around;
  -webkit-align-items: center;

  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  align-content: space-around;
  align-items: center;
}

.wrap-column-center-stretch-def-center
{
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  -webkit-justify-content: center;
  -webkit-align-content: stretch;
  -webkit-align-items: center;

  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  align-content: stretch;
  align-items: center;
}

.wrap-column-end-start-def-center
{
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  -webkit-align-content: flex-start;
  -webkit-align-items: center;

  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: flex-end;
  align-content: flex-start;
  align-items: center;
}

.wrap-column-end-center-def-center
{
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  -webkit-align-content: center;
  -webkit-align-items: center;

  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: flex-end;
  align-content: center;
  align-items: center;
}

.wrap-column-end-end-def-center
{
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  -webkit-align-content: flex-end;
  -webkit-align-items: center;

  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: flex-end;
  align-content: flex-end;
  align-items: center;
}

.wrap-column-end-between-def-center
{
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  -webkit-align-content: space-between;
  -webkit-align-items: center;

  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: flex-end;
  align-content: space-between;
  align-items: center;
}

.wrap-column-end-around-def-center
{
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  -webkit-align-content: space-around;
  -webkit-align-items: center;

  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: flex-end;
  align-content: space-around;
  align-items: center;
}

.wrap-column-end-stretch-def-center
{
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  -webkit-align-content: stretch;
  -webkit-align-items: center;

  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: flex-end;
  align-content: stretch;
  align-items: center;
}

.wrap-column-between-start-def-center
{
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  -webkit-justify-content: space-between;
  -webkit-align-content: flex-start;
  -webkit-align-items: center;

  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: space-between;
  align-content: flex-start;
  align-items: center;
}

.wrap-column-between-center-def-center
{
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  -webkit-justify-content: space-between;
  -webkit-align-content: center;
  -webkit-align-items: center;

  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: space-between;
  align-content: center;
  align-items: center;
}

.wrap-column-between-end-def-center
{
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  -webkit-justify-content: space-between;
  -webkit-align-content: flex-end;
  -webkit-align-items: center;

  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: space-between;
  align-content: flex-end;
  align-items: center;
}

.wrap-column-between-between-def-center
{
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  -webkit-justify-content: space-between;
  -webkit-align-content: space-between;
  -webkit-align-items: center;

  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: space-between;
  align-content: space-between;
  align-items: center;
}

.wrap-column-between-around-def-center
{
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  -webkit-justify-content: space-between;
  -webkit-align-content: space-around;
  -webkit-align-items: center;

  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: space-between;
  align-content: space-around;
  align-items: center;
}

.wrap-column-between-stretch-def-center
{
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  -webkit-justify-content: space-between;
  -webkit-align-content: stretch;
  -webkit-align-items: center;

  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: space-between;
  align-content: stretch;
  align-items: center;
}

.wrap-column-around-start-def-center
{
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  -webkit-justify-content: space-around;
  -webkit-align-content: flex-start;
  -webkit-align-items: center;

  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: space-around;
  align-content: flex-start;
  align-items: center;
}

.wrap-column-around-center-def-center
{
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  -webkit-justify-content: space-around;
  -webkit-align-content: center;
  -webkit-align-items: center;

  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: space-around;
  align-content: center;
  align-items: center;
}

.wrap-column-around-end-def-center
{
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  -webkit-justify-content: space-around;
  -webkit-align-content: flex-end;
  -webkit-align-items: center;

  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: space-around;
  align-content: flex-end;
  align-items: center;
}

.wrap-column-around-between-def-center
{
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  -webkit-justify-content: space-around;
  -webkit-align-content: space-between;
  -webkit-align-items: center;

  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: space-around;
  align-content: space-between;
  align-items: center;
}

.wrap-column-around-around-def-center
{
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  -webkit-justify-content: space-around;
  -webkit-align-content: space-around;
  -webkit-align-items: center;

  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: space-around;
  align-content: space-around;
  align-items: center;
}

.wrap-column-around-stretch-def-center
{
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  -webkit-justify-content: space-around;
  -webkit-align-content: stretch;
  -webkit-align-items: center;

  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: space-around;
  align-content: stretch;
}

/* wrap with default column end */

.wrap-column-start-start-def-end
{
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  -webkit-align-content: flex-start;
  -webkit-align-items: flex-end;

  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-end;
}

.wrap-column-start-center-def-end
{
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  -webkit-align-content: center;
  -webkit-align-items: flex-end;

  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: flex-start;
  align-content: center;
  align-items: flex-end;
}

.wrap-column-start-end-def-end
{
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  -webkit-align-content: flex-end;
  -webkit-align-items: flex-end;

  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: flex-start;
  align-content: flex-end;
  align-items: flex-end;
}

.wrap-column-start-between-def-end
{
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  -webkit-align-content: space-between;
  -webkit-align-items: flex-end;

  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: flex-start;
  align-content: space-between;
  align-items: flex-end;
}

.wrap-column-start-around-def-end
{
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  -webkit-align-content: space-around;
  -webkit-align-items: flex-end;

  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: flex-start;
  align-content: space-around;
  align-items: flex-end;
}

.wrap-column-start-stretch-def-end
{
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  -webkit-align-content: stretch;
  -webkit-align-items: flex-end;

  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: flex-start;
  align-content: stretch;
  align-items: flex-end;
}

.wrap-column-center-start-def-end
{
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  -webkit-justify-content: center;
  -webkit-align-content: flex-start;
  -webkit-align-items: flex-end;

  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  align-content: flex-start;
  align-items: flex-end;
}

.wrap-column-center-center-def-end
{
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  -webkit-justify-content: center;
  -webkit-align-content: center;
  -webkit-align-items: flex-end;

  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  align-content: center;
  align-items: flex-end;
}

.wrap-column-center-end-def-end
{
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  -webkit-justify-content: center;
  -webkit-align-content: flex-end;
  -webkit-align-items: flex-end;

  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  align-content: flex-end;
  align-items: flex-end;
}

.wrap-column-center-between-def-end
{
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  -webkit-justify-content: center;
  -webkit-align-content: space-between;
  -webkit-align-items: flex-end;

  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  align-content: space-between;
  align-items: flex-end;
}

.wrap-column-center-around-def-end
{
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  -webkit-justify-content: center;
  -webkit-align-content: space-around;
  -webkit-align-items: flex-end;

  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  align-content: space-around;
  align-items: flex-end;
}

.wrap-column-center-stretch-def-end
{
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  -webkit-justify-content: center;
  -webkit-align-content: stretch;
  -webkit-align-items: flex-end;

  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  align-content: stretch;
  align-items: flex-end;
}

.wrap-column-end-start-def-end
{
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  -webkit-align-content: flex-start;
  -webkit-align-items: flex-end;

  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: flex-end;
  align-content: flex-start;
  align-items: flex-end;
}

.wrap-column-end-center-def-end
{
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  -webkit-align-content: center;
  -webkit-align-items: flex-end;

  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: flex-end;
  align-content: center;
  align-items: flex-end;
}

.wrap-column-end-end-def-end
{
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  -webkit-align-content: flex-end;
  -webkit-align-items: flex-end;

  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: flex-end;
  align-content: flex-end;
  align-items: flex-end;
}

.wrap-column-end-between-def-end
{
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  -webkit-align-content: space-between;
  -webkit-align-items: flex-end;

  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: flex-end;
  align-content: space-between;
  align-items: flex-end;
}

.wrap-column-end-around-def-end
{
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  -webkit-align-content: space-around;
  -webkit-align-items: flex-end;

  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: flex-end;
  align-content: space-around;
  align-items: flex-end;
}

.wrap-column-end-stretch-def-end
{
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  -webkit-align-content: stretch;
  -webkit-align-items: flex-end;

  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: flex-end;
  align-content: stretch;
  align-items: flex-end;
}

.wrap-column-between-start-def-end
{
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  -webkit-justify-content: space-between;
  -webkit-align-content: flex-start;
  -webkit-align-items: flex-end;

  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: space-between;
  align-content: flex-start;
  align-items: flex-end;
}

.wrap-column-between-center-def-end
{
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  -webkit-justify-content: space-between;
  -webkit-align-content: center;
  -webkit-align-items: flex-end;

  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: space-between;
  align-content: center;
  align-items: flex-end;
}

.wrap-column-between-end-def-end
{
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  -webkit-justify-content: space-between;
  -webkit-align-content: flex-end;
  -webkit-align-items: flex-end;

  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: space-between;
  align-content: flex-end;
  align-items: flex-end;
}

.wrap-column-between-between-def-end
{
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  -webkit-justify-content: space-between;
  -webkit-align-content: space-between;
  -webkit-align-items: flex-end;

  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: space-between;
  align-content: space-between;
  align-items: flex-end;
}

.wrap-column-between-around-def-end
{
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  -webkit-justify-content: space-between;
  -webkit-align-content: space-around;
  -webkit-align-items: flex-end;

  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: space-between;
  align-content: space-around;
  align-items: flex-end;
}

.wrap-column-between-stretch-def-end
{
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  -webkit-justify-content: space-between;
  -webkit-align-content: stretch;
  -webkit-align-items: flex-end;

  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: space-between;
  align-content: stretch;
  align-items: flex-end;
}

.wrap-column-around-start-def-end
{
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  -webkit-justify-content: space-around;
  -webkit-align-content: flex-start;
  -webkit-align-items: flex-end;

  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: space-around;
  align-content: flex-start;
  align-items: flex-end;
}

.wrap-column-around-center-def-end
{
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  -webkit-justify-content: space-around;
  -webkit-align-content: center;
  -webkit-align-items: flex-end;

  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: space-around;
  align-content: center;
  align-items: flex-end;
}

.wrap-column-around-end-def-end
{
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  -webkit-justify-content: space-around;
  -webkit-align-content: flex-end;
  -webkit-align-items: flex-end;

  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: space-around;
  align-content: flex-end;
  align-items: flex-end;
}

.wrap-column-around-between-def-end
{
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  -webkit-justify-content: space-around;
  -webkit-align-content: space-between;
  -webkit-align-items: flex-end;

  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: space-around;
  align-content: space-between;
  align-items: flex-end;
}

.wrap-column-around-around-def-end
{
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  -webkit-justify-content: space-around;
  -webkit-align-content: space-around;
  -webkit-align-items: flex-end;

  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: space-around;
  align-content: space-around;
  align-items: flex-end;
}

.wrap-column-around-stretch-def-end
{
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  -webkit-justify-content: space-around;
  -webkit-align-content: stretch;
  -webkit-align-items: flex-end;

  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: space-around;
  align-content: stretch;
}

/* wrap with default column stretch */

.wrap-column-start-start-def-stretch
{
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  -webkit-align-content: flex-start;
  -webkit-align-items: stretch;

  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: stretch;
}

.wrap-column-start-center-def-stretch
{
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  -webkit-align-content: center;
  -webkit-align-items: stretch;

  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: flex-start;
  align-content: center;
  align-items: stretch;
}

.wrap-column-start-end-def-stretch
{
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  -webkit-align-content: flex-end;
  -webkit-align-items: stretch;

  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: flex-start;
  align-content: flex-end;
  align-items: stretch;
}

.wrap-column-start-between-def-stretch
{
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  -webkit-align-content: space-between;
  -webkit-align-items: stretch;

  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: flex-start;
  align-content: space-between;
  align-items: stretch;
}

.wrap-column-start-around-def-stretch
{
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  -webkit-align-content: space-around;
  -webkit-align-items: stretch;

  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: flex-start;
  align-content: space-around;
  align-items: stretch;
}

.wrap-column-start-stretch-def-stretch
{
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  -webkit-align-content: stretch;
  -webkit-align-items: stretch;

  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: flex-start;
  align-content: stretch;
  align-items: stretch;
}

.wrap-column-center-start-def-stretch
{
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  -webkit-justify-content: center;
  -webkit-align-content: flex-start;
  -webkit-align-items: stretch;

  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  align-content: flex-start;
  align-items: stretch;
}

.wrap-column-center-center-def-stretch
{
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  -webkit-justify-content: center;
  -webkit-align-content: center;
  -webkit-align-items: stretch;

  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  align-content: center;
  align-items: stretch;
}

.wrap-column-center-end-def-stretch
{
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  -webkit-justify-content: center;
  -webkit-align-content: flex-end;
  -webkit-align-items: stretch;

  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  align-content: flex-end;
  align-items: stretch;
}

.wrap-column-center-between-def-stretch
{
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  -webkit-justify-content: center;
  -webkit-align-content: space-between;
  -webkit-align-items: stretch;

  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  align-content: space-between;
  align-items: stretch;
}

.wrap-column-center-around-def-stretch
{
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  -webkit-justify-content: center;
  -webkit-align-content: space-around;
  -webkit-align-items: stretch;

  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  align-content: space-around;
  align-items: stretch;
}

.wrap-column-center-stretch-def-stretch
{
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  -webkit-justify-content: center;
  -webkit-align-content: stretch;
  -webkit-align-items: stretch;

  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  align-content: stretch;
  align-items: stretch;
}

.wrap-column-end-start-def-stretch
{
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  -webkit-align-content: flex-start;
  -webkit-align-items: stretch;

  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: flex-end;
  align-content: flex-start;
  align-items: stretch;
}

.wrap-column-end-center-def-stretch
{
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  -webkit-align-content: center;
  -webkit-align-items: stretch;

  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: flex-end;
  align-content: center;
  align-items: stretch;
}

.wrap-column-end-end-def-stretch
{
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  -webkit-align-content: flex-end;
  -webkit-align-items: stretch;

  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: flex-end;
  align-content: flex-end;
  align-items: stretch;
}

.wrap-column-end-between-def-stretch
{
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  -webkit-align-content: space-between;
  -webkit-align-items: stretch;

  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: flex-end;
  align-content: space-between;
  align-items: stretch;
}

.wrap-column-end-around-def-stretch
{
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  -webkit-align-content: space-around;
  -webkit-align-items: stretch;

  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: flex-end;
  align-content: space-around;
  align-items: stretch;
}

.wrap-column-end-stretch-def-stretch
{
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  -webkit-align-content: stretch;
  -webkit-align-items: stretch;

  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: flex-end;
  align-content: stretch;
  align-items: stretch;
}

.wrap-column-between-start-def-stretch
{
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  -webkit-justify-content: space-between;
  -webkit-align-content: flex-start;
  -webkit-align-items: stretch;

  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: space-between;
  align-content: flex-start;
  align-items: stretch;
}

.wrap-column-between-center-def-stretch
{
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  -webkit-justify-content: space-between;
  -webkit-align-content: center;
  -webkit-align-items: stretch;

  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: space-between;
  align-content: center;
  align-items: stretch;
}

.wrap-column-between-end-def-stretch
{
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  -webkit-justify-content: space-between;
  -webkit-align-content: flex-end;
  -webkit-align-items: stretch;

  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: space-between;
  align-content: flex-end;
  align-items: stretch;
}

.wrap-column-between-between-def-stretch
{
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  -webkit-justify-content: space-between;
  -webkit-align-content: space-between;
  -webkit-align-items: stretch;

  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: space-between;
  align-content: space-between;
  align-items: stretch;
}

.wrap-column-between-around-def-stretch
{
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  -webkit-justify-content: space-between;
  -webkit-align-content: space-around;
  -webkit-align-items: stretch;

  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: space-between;
  align-content: space-around;
  align-items: stretch;
}

.wrap-column-between-stretch-def-stretch
{
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  -webkit-justify-content: space-between;
  -webkit-align-content: stretch;
  -webkit-align-items: stretch;

  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: space-between;
  align-content: stretch;
  align-items: stretch;
}

.wrap-column-around-start-def-stretch
{
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  -webkit-justify-content: space-around;
  -webkit-align-content: flex-start;
  -webkit-align-items: stretch;

  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: space-around;
  align-content: flex-start;
  align-items: stretch;
}

.wrap-column-around-center-def-stretch
{
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  -webkit-justify-content: space-around;
  -webkit-align-content: center;
  -webkit-align-items: stretch;

  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: space-around;
  align-content: center;
  align-items: stretch;
}

.wrap-column-around-end-def-stretch
{
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  -webkit-justify-content: space-around;
  -webkit-align-content: flex-end;
  -webkit-align-items: stretch;

  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: space-around;
  align-content: flex-end;
  align-items: stretch;
}

.wrap-column-around-between-def-stretch
{
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  -webkit-justify-content: space-around;
  -webkit-align-content: space-between;
  -webkit-align-items: stretch;

  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: space-around;
  align-content: space-between;
  align-items: stretch;
}

.wrap-column-around-around-def-stretch
{
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  -webkit-justify-content: space-around;
  -webkit-align-content: space-around;
  -webkit-align-items: stretch;

  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: space-around;
  align-content: space-around;
  align-items: stretch;
}

.wrap-column-around-stretch-def-stretch
{
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  -webkit-justify-content: space-around;
  -webkit-align-content: stretch;
  -webkit-align-items: stretch;

  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: space-around;
  align-content: stretch;
}

/*     E N D   F L E X     */

/*   O H T E R   F O R   F L E X   */

.f10a {
  flex: 1 0 auto;
}

.f10100 {
  flex: 1 0 100%;
}

.f00a {
  flex: 0 0 auto;
}

/*   E N D   O H T E R   F O R   F L E X   */

*, ::before, ::after
{
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
  --tw-contain-size:  ;
  --tw-contain-layout:  ;
  --tw-contain-paint:  ;
  --tw-contain-style:  ;
}

::backdrop
{
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
  --tw-contain-size:  ;
  --tw-contain-layout:  ;
  --tw-contain-paint:  ;
  --tw-contain-style:  ;
}

/*     ! tailwindcss v3.4.14 | MIT License | https://tailwindcss.com     */

/*
1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
2. Allow adding a border to an element by just adding a border-width. (https://github.com/tailwindcss/tailwindcss/pull/116)
*/

*,
::before,
::after {
  box-sizing: border-box; /* 1 */
  border-width: 0; /* 2 */
  border-style: solid; /* 2 */
  border-color: #e5e7eb; /* 2 */
}

::before,
::after {
  --tw-content: '';
}

/*
1. Use a consistent sensible line-height in all browsers.
2. Prevent adjustments of font size after orientation changes in iOS.
3. Use a more readable tab size.
4. Use the user's configured `sans` font-family by default.
5. Use the user's configured `sans` font-feature-settings by default.
6. Use the user's configured `sans` font-variation-settings by default.
7. Disable tap highlights on iOS
*/

html,
:host {
  line-height: 1.5; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -moz-tab-size: 4; /* 3 */
  -o-tab-size: 4;
     tab-size: 4; /* 3 */
  font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; /* 4 */
  font-feature-settings: normal; /* 5 */
  font-variation-settings: normal; /* 6 */
  -webkit-tap-highlight-color: transparent; /* 7 */
}

/*
1. Remove the margin in all browsers.
2. Inherit line-height from `html` so users can set them as a class directly on the `html` element.
*/

body {
  margin: 0; /* 1 */
  line-height: inherit; /* 2 */
}

/*
1. Add the correct height in Firefox.
2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
3. Ensure horizontal rules are visible by default.
*/

hr {
  height: 0; /* 1 */
  color: inherit; /* 2 */
  border-top-width: 1px; /* 3 */
}

/*
Add the correct text decoration in Chrome, Edge, and Safari.
*/

abbr:where([title]) {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

/*
Remove the default font size and weight for headings.
*/

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}

/*
Reset links to optimize for opt-in styling instead of opt-out.
*/

a {
  color: inherit;
  text-decoration: inherit;
}

/*
Add the correct font weight in Edge and Safari.
*/

b,
strong {
  font-weight: bolder;
}

/*
1. Use the user's configured `mono` font-family by default.
2. Use the user's configured `mono` font-feature-settings by default.
3. Use the user's configured `mono` font-variation-settings by default.
4. Correct the odd `em` font sizing in all browsers.
*/

code,
kbd,
samp,
pre {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; /* 1 */
  font-feature-settings: normal; /* 2 */
  font-variation-settings: normal; /* 3 */
  font-size: 1em; /* 4 */
}

/*
Add the correct font size in all browsers.
*/

small {
  font-size: 80%;
}

/*
Prevent `sub` and `sup` elements from affecting the line height in all browsers.
*/

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/*
1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
3. Remove gaps between table borders by default.
*/

table {
  text-indent: 0; /* 1 */
  border-color: inherit; /* 2 */
  border-collapse: collapse; /* 3 */
}

/*
1. Change the font styles in all browsers.
2. Remove the margin in Firefox and Safari.
3. Remove default padding in all browsers.
*/

button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-feature-settings: inherit; /* 1 */
  font-variation-settings: inherit; /* 1 */
  font-size: 100%; /* 1 */
  font-weight: inherit; /* 1 */
  line-height: inherit; /* 1 */
  letter-spacing: inherit; /* 1 */
  color: inherit; /* 1 */
  margin: 0; /* 2 */
  padding: 0; /* 3 */
}

/*
Remove the inheritance of text transform in Edge and Firefox.
*/

button,
select {
  text-transform: none;
}

/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Remove default button styles.
*/

button,
input:where([type='button']),
input:where([type='reset']),
input:where([type='submit']) {
  -webkit-appearance: button; /* 1 */
  background-color: transparent; /* 2 */
  background-image: none; /* 2 */
}

/*
Use the modern Firefox focus style for all focusable elements.
*/

:-moz-focusring {
  outline: auto;
}

/*
Remove the additional `:invalid` styles in Firefox. (https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737)
*/

:-moz-ui-invalid {
  box-shadow: none;
}

/*
Add the correct vertical alignment in Chrome and Firefox.
*/

progress {
  vertical-align: baseline;
}

/*
Correct the cursor style of increment and decrement buttons in Safari.
*/

::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

/*
1. Correct the odd appearance in Chrome and Safari.
2. Correct the outline style in Safari.
*/

[type='search'] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/*
Remove the inner padding in Chrome and Safari on macOS.
*/

::-webkit-search-decoration {
  -webkit-appearance: none;
}

/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Change font properties to `inherit` in Safari.
*/

::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/*
Add the correct display in Chrome and Safari.
*/

summary {
  display: list-item;
}

/*
Removes the default spacing and border for appropriate elements.
*/

blockquote,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
figure,
p,
pre {
  margin: 0;
}

fieldset {
  margin: 0;
  padding: 0;
}

legend {
  padding: 0;
}

ol,
ul,
menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

/*
Reset default styling for dialogs.
*/

dialog {
  padding: 0;
}

/*
Prevent resizing textareas horizontally by default.
*/

textarea {
  resize: vertical;
}

/*
1. Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300)
2. Set the default placeholder color to the user's configured gray 400 color.
*/

input::-moz-placeholder, textarea::-moz-placeholder {
  opacity: 1; /* 1 */
  color: #9ca3af; /* 2 */
}

input::placeholder,
textarea::placeholder {
  opacity: 1; /* 1 */
  color: #9ca3af; /* 2 */
}

/*
Set the default cursor for buttons.
*/

button,
[role="button"] {
  cursor: pointer;
}

/*
Make sure disabled buttons don't get the pointer cursor.
*/

:disabled {
  cursor: default;
}

/*
1. Make replaced elements `display: block` by default. (https://github.com/mozdevs/cssremedy/issues/14)
2. Add `vertical-align: middle` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210)
   This can trigger a poorly considered lint error in some tools but is included by design.
*/

img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block; /* 1 */
  vertical-align: middle; /* 2 */
}

/*
Constrain images and videos to the parent width and preserve their intrinsic aspect ratio. (https://github.com/mozdevs/cssremedy/issues/14)
*/

img,
video {
  max-width: 100%;
  height: auto;
}

/* Make elements with the HTML hidden attribute stay hidden by default */

[hidden]:where(:not([hidden="until-found"])) {
  display: none;
}

.container
{
  width: 100%;
}

@media (min-width: 640px)
{

  .container
{
    max-width: 640px;
  }
}

@media (min-width: 768px)
{

  .container
{
    max-width: 768px;
  }
}

@media (min-width: 1024px)
{

  .container
{
    max-width: 1024px;
  }
}

@media (min-width: 1280px)
{

  .container
{
    max-width: 1280px;
  }
}

@media (min-width: 1536px)
{

  .container
{
    max-width: 1536px;
  }
}

.fixed
{
  position: fixed;
}

.absolute
{
  position: absolute;
}

.relative
{
  position: relative;
}

.-left-80
{
  left: -20rem;
}

.-left-\[145px\]
{
  left: -145px;
}

.-right-80
{
  right: -20rem;
}

.bottom-\[-160px\]
{
  bottom: -160px;
}

.left-1\/2
{
  left: 50%;
}

.right-40
{
  right: 10rem;
}

.top-\[110px\]
{
  top: 110px;
}

.top-\[40px\]
{
  top: 40px;
}

.-z-10
{
  z-index: -10;
}

.z-10
{
  z-index: 10;
}

.order-first
{
  order: -9999;
}

.m-0
{
  margin: 0px;
}

.m-1
{
  margin: 0.25rem;
}

.m-10
{
  margin: 2.5rem;
}

.m-11
{
  margin: 2.75rem;
}

.m-12
{
  margin: 3rem;
}

.m-14
{
  margin: 3.5rem;
}

.m-16
{
  margin: 4rem;
}

.m-2
{
  margin: 0.5rem;
}

.m-20
{
  margin: 5rem;
}

.m-24
{
  margin: 6rem;
}

.m-28
{
  margin: 7rem;
}

.m-3
{
  margin: 0.75rem;
}

.m-32
{
  margin: 8rem;
}

.m-36
{
  margin: 9rem;
}

.m-4
{
  margin: 1rem;
}

.m-40
{
  margin: 10rem;
}

.m-44
{
  margin: 11rem;
}

.m-48
{
  margin: 12rem;
}

.m-5
{
  margin: 1.25rem;
}

.m-52
{
  margin: 13rem;
}

.m-56
{
  margin: 14rem;
}

.m-6
{
  margin: 1.5rem;
}

.m-60
{
  margin: 15rem;
}

.m-64
{
  margin: 16rem;
}

.m-7
{
  margin: 1.75rem;
}

.m-72
{
  margin: 18rem;
}

.m-8
{
  margin: 2rem;
}

.m-80
{
  margin: 20rem;
}

.m-9
{
  margin: 2.25rem;
}

.m-96
{
  margin: 24rem;
}

.mx-auto
{
  margin-left: auto;
  margin-right: auto;
}

.mb-0
{
  margin-bottom: 0px;
}

.mb-1
{
  margin-bottom: 0.25rem;
}

.mb-10
{
  margin-bottom: 2.5rem;
}

.mb-11
{
  margin-bottom: 2.75rem;
}

.mb-12
{
  margin-bottom: 3rem;
}

.mb-14
{
  margin-bottom: 3.5rem;
}

.mb-16
{
  margin-bottom: 4rem;
}

.mb-2
{
  margin-bottom: 0.5rem;
}

.mb-20
{
  margin-bottom: 5rem;
}

.mb-24
{
  margin-bottom: 6rem;
}

.mb-28
{
  margin-bottom: 7rem;
}

.mb-3
{
  margin-bottom: 0.75rem;
}

.mb-32
{
  margin-bottom: 8rem;
}

.mb-36
{
  margin-bottom: 9rem;
}

.mb-4
{
  margin-bottom: 1rem;
}

.mb-40
{
  margin-bottom: 10rem;
}

.mb-44
{
  margin-bottom: 11rem;
}

.mb-48
{
  margin-bottom: 12rem;
}

.mb-5
{
  margin-bottom: 1.25rem;
}

.mb-52
{
  margin-bottom: 13rem;
}

.mb-56
{
  margin-bottom: 14rem;
}

.mb-6
{
  margin-bottom: 1.5rem;
}

.mb-60
{
  margin-bottom: 15rem;
}

.mb-64
{
  margin-bottom: 16rem;
}

.mb-7
{
  margin-bottom: 1.75rem;
}

.mb-72
{
  margin-bottom: 18rem;
}

.mb-8
{
  margin-bottom: 2rem;
}

.mb-80
{
  margin-bottom: 20rem;
}

.mb-9
{
  margin-bottom: 2.25rem;
}

.mb-96
{
  margin-bottom: 24rem;
}

.ml-0
{
  margin-left: 0px;
}

.ml-1
{
  margin-left: 0.25rem;
}

.ml-10
{
  margin-left: 2.5rem;
}

.ml-11
{
  margin-left: 2.75rem;
}

.ml-12
{
  margin-left: 3rem;
}

.ml-14
{
  margin-left: 3.5rem;
}

.ml-16
{
  margin-left: 4rem;
}

.ml-2
{
  margin-left: 0.5rem;
}

.ml-20
{
  margin-left: 5rem;
}

.ml-24
{
  margin-left: 6rem;
}

.ml-28
{
  margin-left: 7rem;
}

.ml-3
{
  margin-left: 0.75rem;
}

.ml-32
{
  margin-left: 8rem;
}

.ml-36
{
  margin-left: 9rem;
}

.ml-4
{
  margin-left: 1rem;
}

.ml-40
{
  margin-left: 10rem;
}

.ml-44
{
  margin-left: 11rem;
}

.ml-48
{
  margin-left: 12rem;
}

.ml-5
{
  margin-left: 1.25rem;
}

.ml-52
{
  margin-left: 13rem;
}

.ml-56
{
  margin-left: 14rem;
}

.ml-6
{
  margin-left: 1.5rem;
}

.ml-60
{
  margin-left: 15rem;
}

.ml-64
{
  margin-left: 16rem;
}

.ml-7
{
  margin-left: 1.75rem;
}

.ml-72
{
  margin-left: 18rem;
}

.ml-8
{
  margin-left: 2rem;
}

.ml-80
{
  margin-left: 20rem;
}

.ml-9
{
  margin-left: 2.25rem;
}

.ml-96
{
  margin-left: 24rem;
}

.mr-0
{
  margin-right: 0px;
}

.mr-1
{
  margin-right: 0.25rem;
}

.mr-10
{
  margin-right: 2.5rem;
}

.mr-11
{
  margin-right: 2.75rem;
}

.mr-12
{
  margin-right: 3rem;
}

.mr-14
{
  margin-right: 3.5rem;
}

.mr-16
{
  margin-right: 4rem;
}

.mr-2
{
  margin-right: 0.5rem;
}

.mr-20
{
  margin-right: 5rem;
}

.mr-24
{
  margin-right: 6rem;
}

.mr-28
{
  margin-right: 7rem;
}

.mr-3
{
  margin-right: 0.75rem;
}

.mr-32
{
  margin-right: 8rem;
}

.mr-36
{
  margin-right: 9rem;
}

.mr-4
{
  margin-right: 1rem;
}

.mr-40
{
  margin-right: 10rem;
}

.mr-44
{
  margin-right: 11rem;
}

.mr-48
{
  margin-right: 12rem;
}

.mr-5
{
  margin-right: 1.25rem;
}

.mr-52
{
  margin-right: 13rem;
}

.mr-56
{
  margin-right: 14rem;
}

.mr-6
{
  margin-right: 1.5rem;
}

.mr-60
{
  margin-right: 15rem;
}

.mr-64
{
  margin-right: 16rem;
}

.mr-7
{
  margin-right: 1.75rem;
}

.mr-72
{
  margin-right: 18rem;
}

.mr-8
{
  margin-right: 2rem;
}

.mr-80
{
  margin-right: 20rem;
}

.mr-9
{
  margin-right: 2.25rem;
}

.mr-96
{
  margin-right: 24rem;
}

.mt-0
{
  margin-top: 0px;
}

.mt-1
{
  margin-top: 0.25rem;
}

.mt-10
{
  margin-top: 2.5rem;
}

.mt-11
{
  margin-top: 2.75rem;
}

.mt-12
{
  margin-top: 3rem;
}

.mt-14
{
  margin-top: 3.5rem;
}

.mt-16
{
  margin-top: 4rem;
}

.mt-2
{
  margin-top: 0.5rem;
}

.mt-20
{
  margin-top: 5rem;
}

.mt-24
{
  margin-top: 6rem;
}

.mt-28
{
  margin-top: 7rem;
}

.mt-3
{
  margin-top: 0.75rem;
}

.mt-32
{
  margin-top: 8rem;
}

.mt-36
{
  margin-top: 9rem;
}

.mt-4
{
  margin-top: 1rem;
}

.mt-40
{
  margin-top: 10rem;
}

.mt-44
{
  margin-top: 11rem;
}

.mt-48
{
  margin-top: 12rem;
}

.mt-5
{
  margin-top: 1.25rem;
}

.mt-52
{
  margin-top: 13rem;
}

.mt-56
{
  margin-top: 14rem;
}

.mt-6
{
  margin-top: 1.5rem;
}

.mt-60
{
  margin-top: 15rem;
}

.mt-64
{
  margin-top: 16rem;
}

.mt-7
{
  margin-top: 1.75rem;
}

.mt-72
{
  margin-top: 18rem;
}

.mt-8
{
  margin-top: 2rem;
}

.mt-80
{
  margin-top: 20rem;
}

.mt-9
{
  margin-top: 2.25rem;
}

.mt-96
{
  margin-top: 24rem;
}

.block
{
  display: block;
}

.flex
{
  display: flex;
}

.grid
{
  display: grid;
}

.hidden
{
  display: none;
}

.h-12
{
  height: 3rem;
}

.h-20
{
  height: 5rem;
}

.h-8
{
  height: 2rem;
}

.h-\[120px\]
{
  height: 120px;
}

.h-\[387px\]
{
  height: 387px;
}

.h-\[427px\]
{
  height: 427px;
}

.h-\[480px\]
{
  height: 480px;
}

.h-\[500px\]
{
  height: 500px;
}

.h-\[539px\]
{
  height: 539px;
}

.h-\[600px\]
{
  height: 600px;
}

.h-\[60px\]
{
  height: 60px;
}

.h-\[90px\]
{
  height: 90px;
}

.h-full
{
  height: 100%;
}

.w-24
{
  width: 6rem;
}

.w-8
{
  width: 2rem;
}

.w-\[181\.42px\]
{
  width: 181.42px;
}

.w-\[300px\]
{
  width: 300px;
}

.w-\[427px\]
{
  width: 427px;
}

.w-\[480px\]
{
  width: 480px;
}

.w-\[539px\]
{
  width: 539px;
}

.w-\[90px\]
{
  width: 90px;
}

.w-auto
{
  width: auto;
}

.w-full
{
  width: 100%;
}

.max-w-full
{
  max-width: 100%;
}

.max-w-lg
{
  max-width: 32rem;
}

.max-w-xl
{
  max-width: 36rem;
}

.flex-1
{
  flex: 1 1 0%;
}

.flex-shrink-0
{
  flex-shrink: 0;
}

.-translate-x-1\/2
{
  --tw-translate-x: -50%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.grid-cols-1
{
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.flex-col
{
  flex-direction: column;
}

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

.items-start
{
  align-items: flex-start;
}

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

.justify-start
{
  justify-content: flex-start;
}

.justify-center
{
  justify-content: center;
}

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

.gap-14
{
  gap: 3.5rem;
}

.gap-4
{
  gap: 1rem;
}

.gap-8
{
  gap: 2rem;
}

.-space-y-1 > :not([hidden]) ~ :not([hidden])
{
  --tw-space-y-reverse: 0;
  margin-top: calc(-0.25rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(-0.25rem * var(--tw-space-y-reverse));
}

.space-x-10 > :not([hidden]) ~ :not([hidden])
{
  --tw-space-x-reverse: 0;
  margin-right: calc(2.5rem * var(--tw-space-x-reverse));
  margin-left: calc(2.5rem * calc(1 - var(--tw-space-x-reverse)));
}

.space-x-4 > :not([hidden]) ~ :not([hidden])
{
  --tw-space-x-reverse: 0;
  margin-right: calc(1rem * var(--tw-space-x-reverse));
  margin-left: calc(1rem * calc(1 - var(--tw-space-x-reverse)));
}

.space-y-8 > :not([hidden]) ~ :not([hidden])
{
  --tw-space-y-reverse: 0;
  margin-top: calc(2rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(2rem * var(--tw-space-y-reverse));
}

.overflow-hidden
{
  overflow: hidden;
}

.overflow-x-hidden
{
  overflow-x: hidden;
}

.rounded-2xl
{
  border-radius: 1rem;
}

.rounded-\[300px\]
{
  border-radius: 300px;
}

.rounded-full
{
  border-radius: 9999px;
}

.border
{
  border-width: 1px;
}

.border-white
{
  --tw-border-opacity: 1;
  border-color: rgb(255 255 255 / var(--tw-border-opacity));
}

.bg-\[\#1E1F22\]
{
  --tw-bg-opacity: 1;
  background-color: rgb(30 31 34 / var(--tw-bg-opacity));
}

.bg-\[\#1F2ECF\]
{
  --tw-bg-opacity: 1;
  background-color: rgb(31 46 207 / var(--tw-bg-opacity));
}

.bg-\[\#8126C8\]
{
  --tw-bg-opacity: 1;
  background-color: rgb(129 38 200 / var(--tw-bg-opacity));
}

.bg-transparent
{
  background-color: transparent;
}

.bg-zinc-900
{
  --tw-bg-opacity: 1;
  background-color: rgb(24 24 27 / var(--tw-bg-opacity));
}

.p-0
{
  padding: 0px;
}

.p-1
{
  padding: 0.25rem;
}

.p-10
{
  padding: 2.5rem;
}

.p-11
{
  padding: 2.75rem;
}

.p-12
{
  padding: 3rem;
}

.p-14
{
  padding: 3.5rem;
}

.p-16
{
  padding: 4rem;
}

.p-2
{
  padding: 0.5rem;
}

.p-20
{
  padding: 5rem;
}

.p-24
{
  padding: 6rem;
}

.p-28
{
  padding: 7rem;
}

.p-3
{
  padding: 0.75rem;
}

.p-32
{
  padding: 8rem;
}

.p-36
{
  padding: 9rem;
}

.p-4
{
  padding: 1rem;
}

.p-40
{
  padding: 10rem;
}

.p-44
{
  padding: 11rem;
}

.p-48
{
  padding: 12rem;
}

.p-5
{
  padding: 1.25rem;
}

.p-52
{
  padding: 13rem;
}

.p-56
{
  padding: 14rem;
}

.p-6
{
  padding: 1.5rem;
}

.p-60
{
  padding: 15rem;
}

.p-64
{
  padding: 16rem;
}

.p-7
{
  padding: 1.75rem;
}

.p-72
{
  padding: 18rem;
}

.p-8
{
  padding: 2rem;
}

.p-80
{
  padding: 20rem;
}

.p-9
{
  padding: 2.25rem;
}

.p-96
{
  padding: 24rem;
}

.px-4
{
  padding-left: 1rem;
  padding-right: 1rem;
}

.px-6
{
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.pb-0
{
  padding-bottom: 0px;
}

.pb-1
{
  padding-bottom: 0.25rem;
}

.pb-10
{
  padding-bottom: 2.5rem;
}

.pb-11
{
  padding-bottom: 2.75rem;
}

.pb-12
{
  padding-bottom: 3rem;
}

.pb-14
{
  padding-bottom: 3.5rem;
}

.pb-16
{
  padding-bottom: 4rem;
}

.pb-2
{
  padding-bottom: 0.5rem;
}

.pb-20
{
  padding-bottom: 5rem;
}

.pb-24
{
  padding-bottom: 6rem;
}

.pb-28
{
  padding-bottom: 7rem;
}

.pb-3
{
  padding-bottom: 0.75rem;
}

.pb-32
{
  padding-bottom: 8rem;
}

.pb-36
{
  padding-bottom: 9rem;
}

.pb-4
{
  padding-bottom: 1rem;
}

.pb-40
{
  padding-bottom: 10rem;
}

.pb-44
{
  padding-bottom: 11rem;
}

.pb-48
{
  padding-bottom: 12rem;
}

.pb-5
{
  padding-bottom: 1.25rem;
}

.pb-52
{
  padding-bottom: 13rem;
}

.pb-56
{
  padding-bottom: 14rem;
}

.pb-6
{
  padding-bottom: 1.5rem;
}

.pb-60
{
  padding-bottom: 15rem;
}

.pb-64
{
  padding-bottom: 16rem;
}

.pb-7
{
  padding-bottom: 1.75rem;
}

.pb-72
{
  padding-bottom: 18rem;
}

.pb-8
{
  padding-bottom: 2rem;
}

.pb-80
{
  padding-bottom: 20rem;
}

.pb-9
{
  padding-bottom: 2.25rem;
}

.pb-96
{
  padding-bottom: 24rem;
}

.pl-0
{
  padding-left: 0px;
}

.pl-1
{
  padding-left: 0.25rem;
}

.pl-10
{
  padding-left: 2.5rem;
}

.pl-11
{
  padding-left: 2.75rem;
}

.pl-12
{
  padding-left: 3rem;
}

.pl-14
{
  padding-left: 3.5rem;
}

.pl-16
{
  padding-left: 4rem;
}

.pl-2
{
  padding-left: 0.5rem;
}

.pl-20
{
  padding-left: 5rem;
}

.pl-24
{
  padding-left: 6rem;
}

.pl-28
{
  padding-left: 7rem;
}

.pl-3
{
  padding-left: 0.75rem;
}

.pl-32
{
  padding-left: 8rem;
}

.pl-36
{
  padding-left: 9rem;
}

.pl-4
{
  padding-left: 1rem;
}

.pl-40
{
  padding-left: 10rem;
}

.pl-44
{
  padding-left: 11rem;
}

.pl-48
{
  padding-left: 12rem;
}

.pl-5
{
  padding-left: 1.25rem;
}

.pl-52
{
  padding-left: 13rem;
}

.pl-56
{
  padding-left: 14rem;
}

.pl-6
{
  padding-left: 1.5rem;
}

.pl-60
{
  padding-left: 15rem;
}

.pl-64
{
  padding-left: 16rem;
}

.pl-7
{
  padding-left: 1.75rem;
}

.pl-72
{
  padding-left: 18rem;
}

.pl-8
{
  padding-left: 2rem;
}

.pl-80
{
  padding-left: 20rem;
}

.pl-9
{
  padding-left: 2.25rem;
}

.pl-96
{
  padding-left: 24rem;
}

.pr-0
{
  padding-right: 0px;
}

.pr-1
{
  padding-right: 0.25rem;
}

.pr-10
{
  padding-right: 2.5rem;
}

.pr-11
{
  padding-right: 2.75rem;
}

.pr-12
{
  padding-right: 3rem;
}

.pr-14
{
  padding-right: 3.5rem;
}

.pr-16
{
  padding-right: 4rem;
}

.pr-2
{
  padding-right: 0.5rem;
}

.pr-20
{
  padding-right: 5rem;
}

.pr-24
{
  padding-right: 6rem;
}

.pr-28
{
  padding-right: 7rem;
}

.pr-3
{
  padding-right: 0.75rem;
}

.pr-32
{
  padding-right: 8rem;
}

.pr-36
{
  padding-right: 9rem;
}

.pr-4
{
  padding-right: 1rem;
}

.pr-40
{
  padding-right: 10rem;
}

.pr-44
{
  padding-right: 11rem;
}

.pr-48
{
  padding-right: 12rem;
}

.pr-5
{
  padding-right: 1.25rem;
}

.pr-52
{
  padding-right: 13rem;
}

.pr-56
{
  padding-right: 14rem;
}

.pr-6
{
  padding-right: 1.5rem;
}

.pr-60
{
  padding-right: 15rem;
}

.pr-64
{
  padding-right: 16rem;
}

.pr-7
{
  padding-right: 1.75rem;
}

.pr-72
{
  padding-right: 18rem;
}

.pr-8
{
  padding-right: 2rem;
}

.pr-80
{
  padding-right: 20rem;
}

.pr-9
{
  padding-right: 2.25rem;
}

.pr-96
{
  padding-right: 24rem;
}

.pt-0
{
  padding-top: 0px;
}

.pt-1
{
  padding-top: 0.25rem;
}

.pt-10
{
  padding-top: 2.5rem;
}

.pt-11
{
  padding-top: 2.75rem;
}

.pt-12
{
  padding-top: 3rem;
}

.pt-14
{
  padding-top: 3.5rem;
}

.pt-16
{
  padding-top: 4rem;
}

.pt-2
{
  padding-top: 0.5rem;
}

.pt-20
{
  padding-top: 5rem;
}

.pt-24
{
  padding-top: 6rem;
}

.pt-28
{
  padding-top: 7rem;
}

.pt-3
{
  padding-top: 0.75rem;
}

.pt-32
{
  padding-top: 8rem;
}

.pt-36
{
  padding-top: 9rem;
}

.pt-4
{
  padding-top: 1rem;
}

.pt-40
{
  padding-top: 10rem;
}

.pt-44
{
  padding-top: 11rem;
}

.pt-48
{
  padding-top: 12rem;
}

.pt-5
{
  padding-top: 1.25rem;
}

.pt-52
{
  padding-top: 13rem;
}

.pt-56
{
  padding-top: 14rem;
}

.pt-6
{
  padding-top: 1.5rem;
}

.pt-60
{
  padding-top: 15rem;
}

.pt-64
{
  padding-top: 16rem;
}

.pt-7
{
  padding-top: 1.75rem;
}

.pt-72
{
  padding-top: 18rem;
}

.pt-8
{
  padding-top: 2rem;
}

.pt-80
{
  padding-top: 20rem;
}

.pt-9
{
  padding-top: 2.25rem;
}

.pt-96
{
  padding-top: 24rem;
}

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

.font-inter
{
  font-family: Inter, sans-serif;
}

.text-2xl
{
  font-size: 1.5rem;
  line-height: 2rem;
}

.text-3xl
{
  font-size: 1.875rem;
  line-height: 2.25rem;
}

.text-4xl
{
  font-size: 2.25rem;
  line-height: 2.5rem;
}

.text-\[32px\]
{
  font-size: 32px;
}

.text-base
{
  font-size: 1rem;
  line-height: 1.5rem;
}

.text-sm
{
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.leading-6
{
  line-height: 1.5rem;
}

.leading-\[40px\]
{
  line-height: 40px;
}

.text-\[\#9F9F9F\]
{
  --tw-text-opacity: 1;
  color: rgb(159 159 159 / var(--tw-text-opacity));
}

.text-white
{
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}

.blur
{
  --tw-blur: blur(8px);
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}

.blur-\[24px\]
{
  --tw-blur: blur(24px);
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}

.blur-\[80px\]
{
  --tw-blur: blur(80px);
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}

.transition-colors
{
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.logo-header {
    height: 3rem;
}

.logo-header, .logo-footer {
    border-radius: 10px;
}

.logo-title {
    color: wheat;
    height: 3rem;
    margin-left: 10px;
    font-size: larger;
}

.hover\:bg-white\/5:hover
{
  background-color: rgb(255 255 255 / 0.05);
}

.hover\:text-gray-300:hover
{
  --tw-text-opacity: 1;
  color: rgb(209 213 219 / var(--tw-text-opacity));
}

.hover\:opacity-80:hover
{
  opacity: 0.8;
}

@media (min-width: 640px)
{

  .sm\:flex-row
{
    flex-direction: row;
  }
}

@media (min-width: 768px)
{

  .md\:mt-20
{
    margin-top: 5rem;
  }

  .md\:mt-40
{
    margin-top: 10rem;
  }

  .md\:block
{
    display: block;
  }

  .md\:flex
{
    display: flex;
  }

  .md\:h-\[200px\]
{
    height: 200px;
  }

  .md\:max-w-\[671px\]
{
    max-width: 671px;
  }

  .md\:grid-cols-2
{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .md\:flex-row
{
    flex-direction: row;
  }

  .md\:px-0
{
    padding-left: 0px;
    padding-right: 0px;
  }

  .md\:px-24
{
    padding-left: 6rem;
    padding-right: 6rem;
  }

  .md\:text-\[56px\]
{
    font-size: 56px;
  }

  .md\:text-lg
{
    font-size: 1.125rem;
    line-height: 1.75rem;
  }

  .md\:leading-7
{
    line-height: 1.75rem;
  }

  .md\:leading-\[68px\]
{
    line-height: 68px;
  }
}

@media (min-width: 1024px)
{

  .lg\:mb-0
{
    margin-bottom: 0px;
  }

  .lg\:block
{
    display: block;
  }

  .lg\:flex
{
    display: flex;
  }

  .lg\:w-2\/4
{
    width: 50%;
  }

  .lg\:bg-transparent
{
    background-color: transparent;
  }

  .lg\:p-0
{
    padding: 0px;
  }
}

@media (min-width: 1280px)
{

  .xl\:order-none
{
    order: 0;
  }

  .xl\:block
{
    display: block;
  }

  .xl\:w-\[50\%\]
{
    width: 50%;
  }

  .xl\:grid-cols-3
{
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .xl\:space-y-28 > :not([hidden]) ~ :not([hidden])
{
    --tw-space-y-reverse: 0;
    margin-top: calc(7rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(7rem * var(--tw-space-y-reverse));
  }

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

  .xl\:text-right
{
    text-align: right;
  }
}

