/* ***************************** */

.row {
  margin-right: -10px;
  margin-left: -10px;

  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display:         flex;
  flex-wrap: wrap;

}

.row:before,
.row:after {
  content: " "; /* 1 */
  display: table; /* 2 */
}

@media not all and (min-resolution:.001dpcm) { @supports (-webkit-appearance:none) { /* SAFARI-ONLY CSS */
  .row:before,
  .row:after {
    display: inline-block;
  }
} }

.row:after {
  clear: both;
}

.row > [class*='col-'] {
  float: left;
  padding-left: 10px;
  padding-right: 10px;
  -webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
  -moz-box-sizing: border-box;    /* Firefox, other Gecko */
  box-sizing: border-box;         /* Opera/IE 8+ */
  display: block;
  position: relative;
  width: 100%;

  display: flex;
  flex-direction: column;

}

.equal {
  display: flex;
  display: -webkit-flex;
  flex-wrap: wrap;
}

.row .col-7-xs-0          { display: none; }

.row .col-7-xs-1          { width: 14.28571429%; display: block;}
.row .col-7-xs-2          { width: 28.57142857%; display: block;}
.row .col-7-xs-3          { width: 42.85714286%; display: block;}
.row .col-7-xs-4          { width: 57.14285714%; display: block;}
.row .col-7-xs-5          { width: 71.42857143%; display: block;}
.row .col-7-xs-6          { width: 85.71428571%; display: block;}
.row .col-7-xs-7          { width: 100%; display: block;}

.row .col-7-xs-push-0     { left: auto; }
.row .col-7-xs-push-1     { left: 14.28571429%; }
.row .col-7-xs-push-2     { left: 28.57142857%; }
.row .col-7-xs-push-3     { left: 42.85714286%; }
.row .col-7-xs-push-4     { left: 57.14285714%; }
.row .col-7-xs-push-5     { left: 71.42857143%; }
.row .col-7-xs-push-6     { left: 85.71428571%; }
.row .col-7-xs-push-7     { left: 100%; }

.row .col-12-xs-0         { display: none; }

.row .col-12-xs-1         { width: 8.333333333%; display: block;}
.row .col-12-xs-2         { width: 16.66666667%; display: block;}
.row .col-12-xs-3         { width: 25%; display: block;}
.row .col-12-xs-4         { width: 33.33333333%; display: block;}
.row .col-12-xs-5         { width: 41.66666667%; display: block;}
.row .col-12-xs-6         { width: 50%; display: block;}
.row .col-12-xs-7         { width: 58.33333333%; display: block;}
.row .col-12-xs-8         { width: 66.66666667%; display: block;}
.row .col-12-xs-9         { width: 75%; display: block;}
.row .col-12-xs-10        { width: 83.33333333%; display: block;}
.row .col-12-xs-11        { width: 91.66666667%; display: block;}
.row .col-12-xs-12        { width: 100%; display: block;}

.row .col-12-xs-push-0    { left: auto; }
.row .col-12-xs-push-1    { left: 8.333333333%; }
.row .col-12-xs-push-2    { left: 16.66666667%; }
.row .col-12-xs-push-3    { left: 25%; }
.row .col-12-xs-push-4    { left: 33.33333333%; }
.row .col-12-xs-push-5    { left: 41.66666667%; }
.row .col-12-xs-push-6    { left: 50%; }
.row .col-12-xs-push-7    { left: 58.33333333%; }
.row .col-12-xs-push-8    { left: 66.66666667%; }
.row .col-12-xs-push-9    { left: 75%; }
.row .col-12-xs-push-10   { left: 83.33333333%; }
.row .col-12-xs-push-11   { left: 91.66666667%; }
.row .col-12-xs-push-12   { left: 100%; }

.row .col-12-xs-pull-0    { right: auto; }
.row .col-12-xs-pull-1    { right: 8.33333333%; }
.row .col-12-xs-pull-2    { right: 16.66666667%; }
.row .col-12-xs-pull-3    { right: 25%; }
.row .col-12-xs-pull-4    { right: 33.33333333%; }
.row .col-12-xs-pull-5    { right: 41.66666667%; }
.row .col-12-xs-pull-6    { right: 50%; }
.row .col-12-xs-pull-7    { right: 58.33333333%; }
.row .col-12-xs-pull-8    { right: 66.66666667%; }
.row .col-12-xs-pull-9    { right: 75%; }
.row .col-12-xs-pull-10   { right: 83.33333333%; }
.row .col-12-xs-pull-11   { right: 91.66666667%; }
.row .col-12-xs-pull-12   { right: 100%; }

.row .col-12-xs-offset-0    { margin-left: 0; }
.row .col-12-xs-offset-1    { margin-left: 8.33333333%; }
.row .col-12-xs-offset-2    { margin-left: 16.66666667%; }
.row .col-12-xs-offset-3    { margin-left: 25%; }
.row .col-12-xs-offset-4    { margin-left: 33.33333333%; }
.row .col-12-xs-offset-5    { margin-left: 41.66666667%; }
.row .col-12-xs-offset-6    { margin-left: 50%; }
.row .col-12-xs-offset-7    { margin-left: 58.33333333%; }
.row .col-12-xs-offset-8    { margin-left: 66.66666667%; }
.row .col-12-xs-offset-9    { margin-left: 75%; }
.row .col-12-xs-offset-10   { margin-left: 83.33333333%; }
.row .col-12-xs-offset-11   { margin-left: 91.66666667%; }
.row .col-12-xs-offset-12   { margin-left: 100%; }

.row .col-12-xs-center { text-align: center;}
.row .col-12-xs-right { text-align: right;}
.row .col-12-xs-left { text-align: left;}

@media (min-width: 540px) {

  .row .col-7-sm-0        { display: none; }

  .row .col-7-sm-1        { width: 14.28571429%; display: block;}
  .row .col-7-sm-2        { width: 28.57142857%; display: block;}
  .row .col-7-sm-3        { width: 42.85714286%; display: block;}
  .row .col-7-sm-4        { width: 57.14285714%; display: block;}
  .row .col-7-sm-5        { width: 71.42857143%; display: block;}
  .row .col-7-sm-6        { width: 85.71428571%; display: block;}
  .row .col-7-sm-7        { width: 100%; display: block;}

  .row .col-7-sm-push-0   { left: auto; }
  .row .col-7-sm-push-1   { left: 14.28571429%; }
  .row .col-7-sm-push-2   { left: 28.57142857%; }
  .row .col-7-sm-push-3   { left: 42.85714286%; }
  .row .col-7-sm-push-4   { left: 57.14285714%; }
  .row .col-7-sm-push-5   { left: 71.42857143%; }
  .row .col-7-sm-push-6   { left: 85.71428571%; }
  .row .col-7-sm-push-7   { left: 100%; }

  .row .col-12-sm-0       { display: none; }

  .row .col-12-sm-1       { width: 8.333333333%; display: block;}
  .row .col-12-sm-2       { width: 16.66666667%; display: block;}
  .row .col-12-sm-3       { width: 25%; display: block;}
  .row .col-12-sm-4       { width: 33.33333333%; display: block;}
  .row .col-12-sm-5       { width: 41.66666667%; display: block;}
  .row .col-12-sm-6       { width: 50%; display: block;}
  .row .col-12-sm-7       { width: 58.33333333%; display: block;}
  .row .col-12-sm-8       { width: 66.66666667%; display: block;}
  .row .col-12-sm-9       { width: 75%; display: block;}
  .row .col-12-sm-10      { width: 83.33333333%; display: block;}
  .row .col-12-sm-11      { width: 91.66666667%; display: block;}
  .row .col-12-sm-12      { width: 100%; display: block;}

  .row .col-12-sm-push-0  { left: auto; }
  .row .col-12-sm-push-1  { left: 8.333333333%; }
  .row .col-12-sm-push-2  { left: 16.66666667%; }
  .row .col-12-sm-push-3  { left: 25%; }
  .row .col-12-sm-push-4  { left: 33.33333333%; }
  .row .col-12-sm-push-5  { left: 41.66666667%; }
  .row .col-12-sm-push-6  { left: 50%; }
  .row .col-12-sm-push-7  { left: 58.33333333%; }
  .row .col-12-sm-push-8  { left: 66.66666667%; }
  .row .col-12-sm-push-9  { left: 75%; }
  .row .col-12-sm-push-10 { left: 83.33333333%; }
  .row .col-12-sm-push-11 { left: 91.66666667%; }
  .row .col-12-sm-push-12 { left: 100%; }

  .row .col-12-sm-pull-0  { right: auto; }
  .row .col-12-sm-pull-1  { right: 8.33333333%; }
  .row .col-12-sm-pull-2  { right: 16.66666667%; }
  .row .col-12-sm-pull-3  { right: 25%; }
  .row .col-12-sm-pull-4  { right: 33.33333333%; }
  .row .col-12-sm-pull-5  { right: 41.66666667%; }
  .row .col-12-sm-pull-6  { right: 50%; }
  .row .col-12-sm-pull-7  { right: 58.33333333%; }
  .row .col-12-sm-pull-8  { right: 66.66666667%; }
  .row .col-12-sm-pull-9  { right: 75%; }
  .row .col-12-sm-pull-10 { right: 83.33333333%; }
  .row .col-12-sm-pull-11 { right: 91.66666667%; }
  .row .col-12-sm-pull-12 { right: 100%; }

  .row .col-12-sm-offset-0    { margin-left: 0; }
  .row .col-12-sm-offset-1    { margin-left: 8.33333333%; }
  .row .col-12-sm-offset-2    { margin-left: 16.66666667%; }
  .row .col-12-sm-offset-3    { margin-left: 25%; }
  .row .col-12-sm-offset-4    { margin-left: 33.33333333%; }
  .row .col-12-sm-offset-5    { margin-left: 41.66666667%; }
  .row .col-12-sm-offset-6    { margin-left: 50%; }
  .row .col-12-sm-offset-7    { margin-left: 58.33333333%; }
  .row .col-12-sm-offset-8    { margin-left: 66.66666667%; }
  .row .col-12-sm-offset-9    { margin-left: 75%; }
  .row .col-12-sm-offset-10   { margin-left: 83.33333333%; }
  .row .col-12-sm-offset-11   { margin-left: 91.66666667%; }
  .row .col-12-sm-offset-12   { margin-left: 100%; }

  /*.row .col-12-xs-center { text-align: initial;}*/
  .row .col-12-sm-center { text-align: center;}

  /*.row .col-12-xs-right { text-align: initial;}*/
  .row .col-12-sm-right { text-align: right;}

  /*.row .col-12-xs-left { text-align: initial;}*/
  .row .col-12-sm-left { text-align: left;}
}

@media (min-width: 900px) {

  .row .col-7-md-0        { display: none; }

  .row .col-7-md-1        { width: 14.28571429%; display: block;}
  .row .col-7-md-2        { width: 28.57142857%; display: block;}
  .row .col-7-md-3        { width: 42.85714286%; display: block;}
  .row .col-7-md-4        { width: 57.14285714%; display: block;}
  .row .col-7-md-5        { width: 71.42857143%; display: block;}
  .row .col-7-md-6        { width: 85.71428571%; display: block;}
  .row .col-7-md-7        { width: 100%; display: block;}

  .row .col-7-md-push-0   { left: auto; }
  .row .col-7-md-push-1   { left: 14.28571429%; }
  .row .col-7-md-push-2   { left: 28.57142857%; }
  .row .col-7-md-push-3   { left: 42.85714286%; }
  .row .col-7-md-push-4   { left: 57.14285714%; }
  .row .col-7-md-push-5   { left: 71.42857143%; }
  .row .col-7-md-push-6   { left: 85.71428571%; }
  .row .col-7-md-push-7   { left: 100%; }

  .row .col-12-md-0       { display: none; }

  .row .col-12-md-1       { width: 8.333333333%; display: block;}
  .row .col-12-md-2       { width: 16.66666667%; display: block;}
  .row .col-12-md-3       { width: 25%; display: block;}
  .row .col-12-md-4       { width: 33.33333333%; display: block;}
  .row .col-12-md-5       { width: 41.66666667%; display: block;}
  .row .col-12-md-6       { width: 50%; display: block;}
  .row .col-12-md-7       { width: 58.33333333%; display: block;}
  .row .col-12-md-8       { width: 66.66666667%; display: block;}
  .row .col-12-md-9       { width: 75%; display: block;}
  .row .col-12-md-10      { width: 83.33333333%; display: block;}
  .row .col-12-md-11      { width: 91.66666667%; display: block;}
  .row .col-12-md-12      { width: 100%; display: block;}

  .row .col-12-md-push-0  { left: auto; }
  .row .col-12-md-push-1  { left: 8.333333333%; }
  .row .col-12-md-push-2  { left: 16.66666667%; }
  .row .col-12-md-push-3  { left: 25%; }
  .row .col-12-md-push-4  { left: 33.33333333%; }
  .row .col-12-md-push-5  { left: 41.66666667%; }
  .row .col-12-md-push-6  { left: 50%; }
  .row .col-12-md-push-7  { left: 58.33333333%; }
  .row .col-12-md-push-8  { left: 66.66666667%; }
  .row .col-12-md-push-9  { left: 75%; }
  .row .col-12-md-push-10 { left: 83.33333333%; }
  .row .col-12-md-push-11 { left: 91.66666667%; }
  .row .col-12-md-push-12 { left: 100%; }

  .row .col-12-md-pull-0  { right: auto; }
  .row .col-12-md-pull-1  { right: 8.33333333%; }
  .row .col-12-md-pull-2  { right: 16.66666667%; }
  .row .col-12-md-pull-3  { right: 25%; }
  .row .col-12-md-pull-4  { right: 33.33333333%; }
  .row .col-12-md-pull-5  { right: 41.66666667%; }
  .row .col-12-md-pull-6  { right: 50%; }
  .row .col-12-md-pull-7  { right: 58.33333333%; }
  .row .col-12-md-pull-8  { right: 66.66666667%; }
  .row .col-12-md-pull-9  { right: 75%; }
  .row .col-12-md-pull-10 { right: 83.33333333%; }
  .row .col-12-md-pull-11 { right: 91.66666667%; }
  .row .col-12-md-pull-12 { right: 100%; }

  .row .col-12-md-offset-0    { margin-left: 0; }
  .row .col-12-md-offset-1    { margin-left: 8.33333333%; }
  .row .col-12-md-offset-2    { margin-left: 16.66666667%; }
  .row .col-12-md-offset-3    { margin-left: 25%; }
  .row .col-12-md-offset-4    { margin-left: 33.33333333%; }
  .row .col-12-md-offset-5    { margin-left: 41.66666667%; }
  .row .col-12-md-offset-6    { margin-left: 50%; }
  .row .col-12-md-offset-7    { margin-left: 58.33333333%; }
  .row .col-12-md-offset-8    { margin-left: 66.66666667%; }
  .row .col-12-md-offset-9    { margin-left: 75%; }
  .row .col-12-md-offset-10   { margin-left: 83.33333333%; }
  .row .col-12-md-offset-11   { margin-left: 91.66666667%; }
  .row .col-12-md-offset-12   { margin-left: 100%; }

/*  .row .col-12-xs-center { text-align: initial;}
  .row .col-12-sm-center { text-align: initial;}*/
  .row .col-12-md-center { text-align: center;}

/*  .row .col-12-xs-right { text-align: initial;}
  .row .col-12-sm-right { text-align: initial;}*/
  .row .col-12-md-right { text-align: right;}

/*  .row .col-12-xs-left { text-align: initial;}
  .row .col-12-sm-left { text-align: initial;}*/
  .row .col-12-md-left { text-align: left;}
}

@media (min-width: 1120px) {

  .row .col-7-lg-0        { display: none; }

  .row .col-7-lg-1        { width: 14.28571429%; display: block;}
  .row .col-7-lg-2        { width: 28.57142857%; display: block;}
  .row .col-7-lg-3        { width: 42.85714286%; display: block;}
  .row .col-7-lg-4        { width: 57.14285714%; display: block;}
  .row .col-7-lg-5        { width: 71.42857143%; display: block;}
  .row .col-7-lg-6        { width: 85.71428571%; display: block;}
  .row .col-7-lg-7        { width: 100%; display: block;}

  .row .col-7-lg-push-0   { left: auto; }
  .row .col-7-lg-push-1   { left: 14.28571429%; }
  .row .col-7-lg-push-2   { left: 28.57142857%; }
  .row .col-7-lg-push-3   { left: 42.85714286%; }
  .row .col-7-lg-push-4   { left: 57.14285714%; }
  .row .col-7-lg-push-5   { left: 71.42857143%; }
  .row .col-7-lg-push-6   { left: 85.71428571%; }
  .row .col-7-lg-push-7   { left: 100%; }

  .row .col-12-lg-0       { display: none; }

  .row .col-12-lg-1       { width: 8.333333333%; display: block;}
  .row .col-12-lg-2       { width: 16.66666667%; display: block;}
  .row .col-12-lg-3       { width: 25%; display: block;}
  .row .col-12-lg-4       { width: 33.33333333%; display: block;}
  .row .col-12-lg-5       { width: 41.66666667%; display: block;}
  .row .col-12-lg-6       { width: 50%; display: block;}
  .row .col-12-lg-7       { width: 58.33333333%; display: block;}
  .row .col-12-lg-8       { width: 66.66666667%; display: block;}
  .row .col-12-lg-9       { width: 75%; display: block;}
  .row .col-12-lg-10      { width: 83.33333333%; display: block;}
  .row .col-12-lg-11      { width: 91.66666667%; display: block;}
  .row .col-12-lg-12      { width: 100%; display: block;}

  .row .col-12-lg-push-0  { left: auto; }
  .row .col-12-lg-push-1  { left: 8.333333333%; }
  .row .col-12-lg-push-2  { left: 16.66666667%; }
  .row .col-12-lg-push-3  { left: 25%; }
  .row .col-12-lg-push-4  { left: 33.33333333%; }
  .row .col-12-lg-push-5  { left: 41.66666667%; }
  .row .col-12-lg-push-6  { left: 50%; }
  .row .col-12-lg-push-7  { left: 58.33333333%; }
  .row .col-12-lg-push-8  { left: 66.66666667%; }
  .row .col-12-lg-push-9  { left: 75%; }
  .row .col-12-lg-push-10 { left: 83.33333333%; }
  .row .col-12-lg-push-11 { left: 91.66666667%; }
  .row .col-12-lg-push-12 { left: 100%; }

  .row .col-12-lg-pull-0  { right: auto; }
  .row .col-12-lg-pull-1  { right: 8.33333333%; }
  .row .col-12-lg-pull-2  { right: 16.66666667%; }
  .row .col-12-lg-pull-3  { right: 25%; }
  .row .col-12-lg-pull-4  { right: 33.33333333%; }
  .row .col-12-lg-pull-5  { right: 41.66666667%; }
  .row .col-12-lg-pull-6  { right: 50%; }
  .row .col-12-lg-pull-7  { right: 58.33333333%; }
  .row .col-12-lg-pull-8  { right: 66.66666667%; }
  .row .col-12-lg-pull-9  { right: 75%; }
  .row .col-12-lg-pull-10 { right: 83.33333333%; }
  .row .col-12-lg-pull-11 { right: 91.66666667%; }
  .row .col-12-lg-pull-12 { right: 100%; }

  .row .col-12-lg-offset-0    { margin-left: 0; }
  .row .col-12-lg-offset-1    { margin-left: 8.33333333%; }
  .row .col-12-lg-offset-2    { margin-left: 16.66666667%; }
  .row .col-12-lg-offset-3    { margin-left: 25%; }
  .row .col-12-lg-offset-4    { margin-left: 33.33333333%; }
  .row .col-12-lg-offset-5    { margin-left: 41.66666667%; }
  .row .col-12-lg-offset-6    { margin-left: 50%; }
  .row .col-12-lg-offset-7    { margin-left: 58.33333333%; }
  .row .col-12-lg-offset-8    { margin-left: 66.66666667%; }
  .row .col-12-lg-offset-9    { margin-left: 75%; }
  .row .col-12-lg-offset-10   { margin-left: 83.33333333%; }
  .row .col-12-lg-offset-11   { margin-left: 91.66666667%; }
  .row .col-12-lg-offset-12   { margin-left: 100%; }

/*  .row .col-12-xs-center { text-align: initial;}
  .row .col-12-sm-center { text-align: initial;}
  .row .col-12-md-center { text-align: initial;}*/
  .row .col-12-lg-center { text-align: center;}

/*  .row .col-12-xs-right { text-align: initial;}
  .row .col-12-sm-right { text-align: initial;}
  .row .col-12-md-right { text-align: initial;}*/
  .row .col-12-lg-right { text-align: right;}

/*  .row .col-12-xs-left { text-align: initial;}
  .row .col-12-sm-left { text-align: initial;}
  .row .col-12-md-left { text-align: initial;}*/
  .row .col-12-lg-left { text-align: left;}

}

