/*

Custom grids go here

*/
/*

You can add a grid with the following properties :

-min : min-width
-max : min-width (use -1 for infinite)
-grid : the susy grid to use
-cols : the grid column count
-name : the name of the grid

*/
/*

Set width with the number of column passed as argument

-list : a list of width values for each grid
        Example : ("tablet":4, "hd":6, ...)
-wide : indicate if the last column gutter is included

*/
/*

Set left margin with the number of column passed as argument

-list : a list of margin values for each grid
        Example : ("tablet":4, "hd":6, ...)
-wide : indicate if the last column gutter is included

*/
/*

Set the element as container for each defined grid

*/
/* line 3, ../sass/chooseCharacter.scss */
.character-screen {
  top: 50%;
  transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  position: fixed;
  display: flex;
  flex-direction: column;
  color: white;
}
/* line 14, ../sass/chooseCharacter.scss */
.character-screen .title {
  text-align: center;
  flex: 0 0 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
/* line 21, ../sass/chooseCharacter.scss */
.character-screen .title .wrap {
  font-family: DINPro-Regular;
  padding: 10px;
  font-size: 20px;
  background-color: white;
  color: black;
  width: 300px;
}
/* line 31, ../sass/chooseCharacter.scss */
.character-screen .list {
  flex: 1;
  display: flex;
  overflow: hidden;
}
/* line 36, ../sass/chooseCharacter.scss */
.character-screen .list .item {
  flex: 1;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
